我正在运行一个Java项目,该项目将Java类字节码作为输入并对其执行许多操作。我要执行的操作之一是要指定要从输入Java类中打印出来的行号。
为澄清这一点,该方法应类似于:
public String getLine(int lineNumber){
String line = //here should be the code that takes the line number and return the line from the Java class
return line;
}
那有可能吗?我已经搜索了很长时间,但是找不到解决方案。
答案 0 :(得分:1)
您在执行此操作时遇到一些问题:
您能指定更精确的方法吗?