java-decompiler / jd-core

JD-Core is a JAVA decompiler written in JAVA.
GNU General Public License v3.0
523 stars 133 forks source link

How to print to specify a method? #66

Open 000xiaoxiao000 opened 2 years ago

000xiaoxiao000 commented 2 years ago

image Just print the hello1 method.

Nikityyy commented 11 months ago
public class HelloWorld
{

public static boolean hello1(boolean b) {
    if(b) {
    System.out.println("1");
    System.out.println("2");
    System.out.println("3");
    }

     return false;

    }
    public static void main(String[] args) {
    hello1(true);
    }
}

Dont know if thats what u want