我想在opensource app中更改一些字符串(测试目的)。所以我使用jad反编译器反编译我的应用程序。
原始班级档案http://dl.dropbox.com/u/32657135/YourTube.class
发出命令Jad.exe Yourtube.jar.java
得到jad作为输出http://dl.dropbox.com/u/32657135/YourTube.jad.java
再次编译代码,无需修改
cmdjavac Yourtube.jar.java
中的命令
错误
YourTube.jad.java:57: error: ';' expected
JVM INSTR monitorenter ;
^
YourTube.jad.java:57: error: not a statement
JVM INSTR monitorenter ;
^
YourTube.jad.java:59: error: not a statement
this;
^
YourTube.jad.java:66: error: ';' expected
JVM INSTR monitorenter ;
^
YourTube.jad.java:66: error: not a statement
JVM INSTR monitorenter ;
^
YourTube.jad.java:68: error: not a statement
this;
^
6 errors
我想知道,为什么我在重新编译时遇到此错误。我在做什么事吗?