修改j2me midlet

时间:2012-11-24 05:26:37

标签: java-me midp

我想在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

再次编译代码,无需修改

cmd javac 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

我想知道,为什么我在重新编译时遇到此错误。我在做什么事吗?

0 个答案:

没有答案