javac -classpath . Toster.java
然后我把它带回到Kitchen.jar:@H_301_5@
jar -uf Kitchen.jar Toster.class
所有工作除了一个问题.当我在JD中打开更新的Kitchen.jar时,我看到所有方法中的局部变量都被重命名为localLongVar.为什么?@H_301_5@
我问的原因是因为Kitchen.jar在修改后拒绝工作.我怀疑它必须是编译问题.也许我误用了一些旗帜或任何东西.不确定.除了基本语法之外,我对Java一无所知.@H_301_5@
我的猜测是我使用最新的1.7版本编译它,原始jar用较旧的JDK编译.这可能解释了操作失败,但这并不能解释当地人的重命名.@H_301_5@
例@H_301_5@
BigInteger[] result = new BigInteger[bis.length / 2];
同班同学:@H_301_5@
BigInteger[] arrayOfBigInteger1 = new BigInteger[paramArrayOfBigInteger.length * 2];
所以它的结果与arrayOfBigInteger1相对应.@H_301_5@
解决方法
从documentation of javac@H_301_5@
-g
Generate all debugging information,including local variables. By default,only line number and source file information is generated.@H_301_5@
-g:none
Do not generate any debugging information.@H_301_5@
-g:{keyword list}
Generate only some kinds of debugging information,specified by a comma separated list of keywords. Valid keywords are:@H_301_5@
source
Source file debugging information @H_301_5@
lines
Line number debugging information@H_301_5@
vars
Local variable debugging information@H_301_5@