- 浏览: 276237 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (220)
- oracle (45)
- extjs (2)
- jstl (8)
- tomcat (9)
- svn (2)
- 系统 (12)
- 工作日志 (4)
- flex (5)
- 乱码 (1)
- jsp (2)
- java (26)
- mysql (8)
- vmware (2)
- 其他 (4)
- acegi (1)
- yui (1)
- hibernate (1)
- javascript (10)
- Maven (2)
- 数据库 (3)
- html css (2)
- displaytag (6)
- 软件开发管理 (2)
- java模式 (2)
- springside (7)
- android (14)
- other (3)
- linux (1)
最新评论
-
yixiandave:
string2020 写道分布式应用 用户认证,应该是在统一的 ...
分布式应用注意简介 -
string2020:
分布式应用 用户认证,应该是在统一的一个地方验证吧
分布式应用注意简介 -
liusu:
1、listView 视图黑色 设置 cacheColorHi ...
android 注意 -
teamilk:
engine 是什么?怎么导呢,不会弄,请教下
H2 数据库数据导出 -
djb_daydayup:
哦,我看到源文件了!
How to use
Ver.2.00 ...
android screen monitor 手机屏幕共享
java class 利用jad 反编译之后,偶尔回碰到一些不正常的代码,例如:label0 :_L1 MISSING_BLOCK_LABEL_30、JVM INSTR ret 7、JVM INSTR tableswitch 1 3: default 269、 JVM INSTR monitorexit、JVM INSTR monitorenter,这些一般是由特殊的for循环、try catch finally语句块、synchronized语句反编译后产生的。下面,就简单介绍一下,一些反编译后的特殊代码的还原规则。本文在Jdk 1.4.2_08+jad 1.58f下测试。jad 1.5.8f可以到这里http://download.csdn.net/source/470540 下载。
第二部分、异常
下面的代码前提是类中有如下属性, Calendar cal = Calendar.getInstance();。
1、Exceptioin的还原 反编译后的代码如下:
view plaincopy to clipboardprint?
public boolean f1()
{
return cal.getTime().after(new Date());
Exception e;
e;
e.printStackTrace();
return false;
}
public boolean f1()
{
return cal.getTime().after(new Date());
Exception e;
e;
e.printStackTrace();
return false;
}
还原后的Java代码 view plaincopy to clipboardprint?
public boolean f1()
{
try
{
return cal.getTime().after(new Date());
}
catch (Exception e)
{
e.printStackTrace();
return false;
}
}
public boolean f1()
{
try
{
return cal.getTime().after(new Date());
}
catch (Exception e)
{
e.printStackTrace();
return false;
}
}
2、finally代码的还原 反编译后的Java代码如下: view plaincopy to clipboardprint?
public boolean f2()
{
boolean flag = cal.getTime().after(new Date());
System.out.println("finally");
return flag;
Exception e;
e;
e.printStackTrace();
System.out.println("finally");
return false;
Exception exception;
exception;
System.out.println("finally");
throw exception;
}
public boolean f2()
{
boolean flag = cal.getTime().after(new Date());
System.out.println("finally");
return flag;
Exception e;
e;
e.printStackTrace();
System.out.println("finally");
return false;
Exception exception;
exception;
System.out.println("finally");
throw exception;
}
还原后的代码如下: view plaincopy to clipboardprint?
public boolean f2()
{
try
{
return cal.getTime().after(new Date());
}
catch (Exception e)
{
e.printStackTrace();
return false;
}
finally
{
System.out.println("finally");
}
}
public boolean f2()
{
try
{
return cal.getTime().after(new Date());
}
catch (Exception e)
{
e.printStackTrace();
return false;
}
finally
{
System.out.println("finally");
}
}
3、MISSING_BLOCK_LABEL_的还原反编译后的代码 view plaincopy to clipboardprint?
public Object f22()
{
Date date = cal.getTime();
System.out.println("finally");
return date;
Exception e;
e;
e.printStackTrace();
System.out.println("finally");
break MISSING_BLOCK_LABEL_45;
Exception exception;
exception;
System.out.println("finally");
throw exception;
return null;
}
public Object f22()
{
Date date = cal.getTime();
System.out.println("finally");
return date;
Exception e;
e;
e.printStackTrace();
System.out.println("finally");
break MISSING_BLOCK_LABEL_45;
Exception exception;
exception;
System.out.println("finally");
throw exception;
return null;
}
还原后的Java代码 view plaincopy to clipboardprint?
public Object f22()
{
try
{
return cal.getTime();
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
System.out.println("finally");
}
return null;
}
public Object f22()
{
try
{
return cal.getTime();
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
System.out.println("finally");
}
return null;
}
4、异常中:label的还原反编译后的代码 view plaincopy to clipboardprint?
public String f4()
throws Exception
{
l0:
{
try
{
Integer i = new Integer(1);
if(i.intValue() > 0)
{
System.out.println(i);
break label0;
}
System.err.println(i);
}
catch(Exception dae)
{
System.err.println(dae);
throw new RuntimeException(dae);
}
return null;
}
return "Hello";
}
public String f4()
throws Exception
{
label0:
{
try
{
Integer i = new Integer(1);
if(i.intValue() > 0)
{
System.out.println(i);
break label0;
}
System.err.println(i);
}
catch(Exception dae)
{
System.err.println(dae);
throw new RuntimeException(dae);
}
return null;
}
return "Hello";
}
注意,这个代码有点诡异,实际代码如下: view plaincopy to clipboardprint?
public String f4() throws Exception
{
try
{
Integer i = new Integer(1);
if (i.intValue() > 0)
{
System.out.println(i);
}
else
{
System.err.println(i);
return null;
}
return "Hello";
}
catch (Exception dae)
{
System.err.println(dae);
throw new RuntimeException(dae);
}
}
public String f4() throws Exception
{
try
{
Integer i = new Integer(1);
if (i.intValue() > 0)
{
System.out.println(i);
}
else
{
System.err.println(i);
return null;
}
return "Hello";
}
catch (Exception dae)
{
System.err.println(dae);
throw new RuntimeException(dae);
}
}
5、典型数据库操作代码还原反编译后代码 view plaincopy to clipboardprint?
public HashMap f5()
{
Connection conn = null;
HashMap hashmap;
HashMap map = new HashMap();
Class.forName("");
conn = DriverManager.getConnection("jdbc:odbc:");
PreparedStatement pstmt = conn.prepareStatement("select * from table");
pstmt.setString(1, "param");
String columnVallue;
for(ResultSet rs = pstmt.executeQuery(); rs.next(); map.put(columnVallue, ""))
columnVallue = rs.getString("column");
hashmap = map;
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
return hashmap;
ClassNotFoundException cnfe;
cnfe;
cnfe.printStackTrace();
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
break MISSING_BLOCK_LABEL_188;
SQLException sqle;
sqle;
sqle.printStackTrace();
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
break MISSING_BLOCK_LABEL_188;
Exception exception;
exception;
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
throw exception;
return null;
}
public HashMap f5()
{
Connection conn = null;
HashMap hashmap;
HashMap map = new HashMap();
Class.forName("");
conn = DriverManager.getConnection("jdbc:odbc:");
PreparedStatement pstmt = conn.prepareStatement("select * from table");
pstmt.setString(1, "param");
String columnVallue;
for(ResultSet rs = pstmt.executeQuery(); rs.next(); map.put(columnVallue, ""))
columnVallue = rs.getString("column");
hashmap = map;
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
return hashmap;
ClassNotFoundException cnfe;
cnfe;
cnfe.printStackTrace();
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
break MISSING_BLOCK_LABEL_188;
SQLException sqle;
sqle;
sqle.printStackTrace();
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
break MISSING_BLOCK_LABEL_188;
Exception exception;
exception;
if(conn != null)
try
{
conn.close();
}
catch(SQLException sqlce)
{
sqlce.printStackTrace();
}
throw exception;
return null;
}
实际代码如下: view plaincopy to clipboardprint?
public HashMap f5()
{
Connection conn = null;
try
{
HashMap map = new HashMap();
Class.forName("");
conn = DriverManager.getConnection("jdbc:odbc:");
PreparedStatement pstmt = conn.prepareStatement("select * from table");
pstmt.setString(1, "param");
ResultSet rs = pstmt.executeQuery();
while (rs.next())
{
String columnVallue = rs.getString("column");
map.put(columnVallue, "");
}
return map;
}
catch (ClassNotFoundException cnfe)
{
cnfe.printStackTrace();
}
catch (SQLException sqle)
{
sqle.printStackTrace();
}
finally
{
if (conn != null)
{
try
{
conn.close();
}
catch (SQLException sqlce)
{
sqlce.printStackTrace();
}
}
}
return null;
}
public HashMap f5()
{
Connection conn = null;
try
{
HashMap map = new HashMap();
Class.forName("");
conn = DriverManager.getConnection("jdbc:odbc:");
PreparedStatement pstmt = conn.prepareStatement("select * from table");
pstmt.setString(1, "param");
ResultSet rs = pstmt.executeQuery();
while (rs.next())
{
String columnVallue = rs.getString("column");
map.put(columnVallue, "");
}
return map;
}
catch (ClassNotFoundException cnfe)
{
cnfe.printStackTrace();
}
catch (SQLException sqle)
{
sqle.printStackTrace();
}
finally
{
if (conn != null)
{
try
{
conn.close();
}
catch (SQLException sqlce)
{
sqlce.printStackTrace();
}
}
}
return null;
}
6、两层异常嵌套代码还原反编译后的代码 view plaincopy to clipboardprint?
public int f6()
{
int i = cal.getTime().compareTo(new Date());
System.out.println("finally");
return i;
Exception e1;
e1;
e1.printStackTrace();
System.out.println("finally");
return -1;
Exception e2;
e2;
e2.printStackTrace();
System.out.println("finally");
return -2;
Exception exception;
exception;
System.out.println("finally");
throw exception;
}
public int f6()
{
int i = cal.getTime().compareTo(new Date());
System.out.println("finally");
return i;
Exception e1;
e1;
e1.printStackTrace();
System.out.println("finally");
return -1;
Exception e2;
e2;
e2.printStackTrace();
System.out.println("finally");
return -2;
Exception exception;
exception;
System.out.println("finally");
throw exception;
}
实际代码 view plaincopy to clipboardprint?
public int f6()
{
try
{
try
{
return cal.getTime().compareTo(new Date());
}
catch (Exception e1)
{
e1.printStackTrace();
return -1;
}
}
catch (Exception e2)
{
e2.printStackTrace();
return -2;
}
finally
{
System.out.println("finally");
}
}
public int f6()
{
try
{
try
{
return cal.getTime().compareTo(new Date());
}
catch (Exception e1)
{
e1.printStackTrace();
return -1;
}
}
catch (Exception e2)
{
e2.printStackTrace();
return -2;
}
finally
{
System.out.println("finally");
}
}
7、非常诡异的代码反编译后的代码 view plaincopy to clipboardprint?
public int f7()
{
int i = cal.getTime().compareTo(new Date());
System.out.println("finally");
return i;
Exception e1;
e1;
e1.printStackTrace();
_L2:
System.out.println("finally");
return -1;
Exception e2;
e2;
e2.printStackTrace();
if(true) goto _L2; else goto _L1
_L1:
Exception exception;
exception;
System.out.println("finally");
throw exception;
}
public int f7()
{
int i = cal.getTime().compareTo(new Date());
System.out.println("finally");
return i;
Exception e1;
e1;
e1.printStackTrace();
_L2:
System.out.println("finally");
return -1;
Exception e2;
e2;
e2.printStackTrace();
if(true) goto _L2; else goto _L1
_L1:
Exception exception;
exception;
System.out.println("finally");
throw exception;
}
原始代码 view plaincopy to clipboardprint?
public int f7()
{
try
{
try
{
return cal.getTime().compareTo(new Date());
}
catch (Exception e1)
{
e1.printStackTrace();
return -1;
}
}
catch (Exception e2)
{
e2.printStackTrace();
return -1;
}
finally
{
System.out.println("finally");
}
}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/z3h/archive/2008/07/11/2640522.aspx
发表评论
-
spring boot 开发期间不需要重启
2017-06-22 18:12 4731:pom.xml中增加 <dependency> ... -
最简单的springboot整合mybatis
2017-06-20 10:56 3961、建一个基本的springboot工程; 2、在pom. ... -
jconsole
2016-08-28 14:04 4081、设置tomcat start.sh JAVA_OPTS=& ... -
java base
2013-02-27 09:58 6441、参数定义: 有未知东西参与运算时,定义参数; 2、whil ... -
ssh springside 混淆
2011-07-21 15:02 1165proguard 工具 。 配置文件: -in ... -
hibernate 下的oracle Id Generator sequence
2010-10-19 14:36 3028@SequenceGenerator(name="C ... -
android 安装笔记
2010-09-18 07:20 6671 、安装android eclipse 插件。地址 http ... -
junit 4 中的Before After Ignore Test BeforeClass AfterClass
2010-09-10 10:29 6977JUnit 4 使用 Java 5 中的注解(annotati ... -
dom4j中文乱码问题
2010-09-10 09:22 948引用:http://liaochangfa.iteye.com ... -
反射私有方法 收藏
2010-05-25 20:16 9001.私有构造函数的调用: ... -
JAVA System.getProperty()参数大全 收藏
2010-05-24 15:35 720java.version Java Ru ... -
eclips 备忘
2010-05-10 11:53 7551、eclipse 下运行tomcat 的配置在.settin ... -
为什么重写对象的equals后最好重写这个对象的hashcode方法
2010-03-11 10:19 720判断两个对象是否相等一般都会用对象的equals方法,而很少用 ... -
java 继承throws exception 注意事项
2010-03-08 11:31 1674子类重写父类方法后。子类的这个重写方法可以不抛出异常或抛出和父 ... -
String 等号比较 和 equals
2010-03-03 11:26 19131、"aa".equals("a ... -
java四个关键字:transient, strictfp, volatile, final
2010-02-22 08:57 877http://hi.baidu.com/dabo12/blog ... -
jdk5新特性
2010-02-03 16:52 709import static com.类名.*;//导入静态方法 ... -
图片压缩
2009-12-22 15:26 1346package zhc.tool.util; import ... -
java 读取图片信息
2009-12-22 11:02 1988exif 介绍 http://baike.baidu.com/ ... -
Spring Quartz定时详情
2009-12-01 13:37 645在Spring中,使用 ...
相关推荐
Java类反编译后的代码还原是指将编译后的Java类文件(.class)转换回Java源代码的过程。在这个过程中,可能会出现一些不正常的代码,例如label0 :_L1 MISSING_BLOCK_LABEL_30、JVM INSTR ret 7、JVM INSTR ...
Java Class反编译工具是程序员在处理已编译的字节码文件时不可或缺的辅助工具。这类工具的主要功能是将`.class`文件转换回可读性强的`.java`源代码,帮助开发者理解或修改已有的Java程序,尤其在没有源代码的情况下...
Java编程语言以其跨平台、面向对象的特性深受开发者喜爱,但在某些情况下,我们可能需要将已编译的`.class`文件还原为可读的`.java`源代码,这就是所谓的反编译。在这种需求下,出现了专门用于反编译Java字节码的...
JavaClass反编译是开发者在探索和理解Java代码运行机制时常用的一种技术。jd-gui是一款功能强大的开源工具,专门用于将编译后的.class文件转换回可读的Java源代码,帮助开发者查看和理解二进制字节码背后的逻辑。在...
Java字节码是一种中间语言,由JVM(Java虚拟机)执行,而反编译就是尝试将这种二进制形式还原成人类可读的代码。 2. **Java反编译的用途**: - **代码理解**:当没有源代码时,反编译可以帮助理解第三方库的内部...
总的来说,Java类class反编译工具是开发者的重要辅助手段,通过它们,我们可以从二进制层面探索Java程序,增强我们的学习和开发能力。但同时,我们也需要了解并遵守相关的法律和道德规范,确保技术的正确使用。
Java反编译是将已编译的字节码(.class文件)转换回源代码(.java文件)的过程,这对于理解和学习已有的Java程序、逆向工程或调试都是很有用的。标题提到的"java反编译工具"是用于这个目的的软件,它能够帮助开发者...
3. 反编译细节:它可以解析出大部分的Java语法,如循环、条件语句、异常处理等,尽管可能无法完美还原原始源代码的注释和精确格式。 4. 内存友好:jd-gui运行时占用的内存资源相对较少,适合开发者日常使用。 5. ...
Java反编译工具是开发人员在理解和学习Java代码或者对已有的.class文件进行逆向工程时经常使用的工具。这些工具可以将Java字节码(.class文件)转换回可读的源代码形式,帮助我们查看并理解那些无法获得源代码的二...
1. **源代码丢失**:如果你只有编译后的`.class`或`.jar`文件,而没有原始的Java源代码,反编译工具可以帮助你恢复代码的逻辑,尽管生成的代码可能不完全与原始代码一致。 2. **学习和分析**:通过反编译,你可以...
### JavaClass反编译原理深度解析 #### 引言 在IT领域,特别是软件开发行业中,反编译技术是一项至关重要的技能,它不仅能够帮助开发者理解其他程序的内部逻辑,还能用于逆向工程、安全审计及版权分析等多个方面。...
JAVA 类(CLASS)文件是Java程序编译后的二进制形式,它包含了程序的机器可执行代码。在某些情况下,开发者可能需要查看这些文件的源代码,例如进行逆向工程、学习第三方库的工作原理或者修复错误。这时,就需要用到...
Java Class反编译是将已经编译好的Java字节码(.class文件)转换回可读的Java源代码(.java文件)的过程。这在进行逆向工程、学习开源库的内部实现或调试已丢失源代码的类时非常有用。在Java领域,有一些工具专门...
然而,由于`.class`文件是二进制格式,对于开发者来说,直接阅读它们并不直观,因此出现了“类文件反编译工具”,如标题提到的,用于将`.class`文件转换回可读的Java源代码。 “class文件反编译工具”是一种实用的...
Java Class反编译工具是程序员在开发和调试Java应用程序时常用的一种辅助工具。它能够将已编译的Java字节码(.class文件)转换回源代码格式,这对于查看或理解无法获取源代码的库或者研究已有的二进制代码非常有用。...
Java反编译工具能够将编译后的字节码文件还原为接近原始Java源代码的形式。这对于学习、研究、调试以及在某些情况下复原丢失的源代码等方面具有重要意义。通过反编译工具,开发者不仅能够了解其他项目的实现细节,还...
使用JD-GUI非常简单,只需将.jar或.class文件拖放到应用程序窗口,它就会立即显示反编译后的源代码。这个工具的特点包括代码高亮、折叠功能,以及可以方便地查看类、方法和变量等元素。对于程序员来说,它是一款强大...
Java反编译是将已编译的`.class`文件转换回`.java`源代码的过程,这对于理解或学习他人编写的二进制库、调试问题或恢复丢失的源代码非常有用。标题提到的“class to java java 反编译工具”正是这类工具的代表,它们...
使用XJad或其他现代的Class反编译工具,开发者通常会得到一个与原始源代码相似但不完全一样的结果,因为反编译过程无法完美地还原所有的细节,比如注释、变量名、原始排版等。尽管如此,反编译结果依然足够理解代码...