锘??xml version="1.0" encoding="utf-8" standalone="yes"?>久久久久久久亚洲精品,亚洲一区二区三区免费在线观看,亚洲中文字幕在线观看 http://m.tkk7.com/javafan/category/29299.htmlOne java world , One java fan ! zh-cn Sun, 03 Feb 2008 21:06:57 GMT Sun, 03 Feb 2008 21:06:57 GMT 60 涓涓В鏋怞ava Class鏂囦歡鐨勫疄渚?/title> http://m.tkk7.com/javafan/archive/2008/02/03/bytecode_ex_ana.html鐙姹傝觸 鐙姹傝觸 Sun, 03 Feb 2008 05:03:00 GMT http://m.tkk7.com/javafan/archive/2008/02/03/bytecode_ex_ana.html http://m.tkk7.com/javafan/comments/179135.html http://m.tkk7.com/javafan/archive/2008/02/03/bytecode_ex_ana.html#Feedback 6 http://m.tkk7.com/javafan/comments/commentRss/179135.html http://m.tkk7.com/javafan/services/trackbacks/179135.html 闃呰鍏ㄦ枃 ]]> Class鏂囦歡鏍煎紡瑙f瀽 http://m.tkk7.com/javafan/archive/2008/02/01/jclass_ana.html鐙姹傝觸 鐙姹傝觸 Fri, 01 Feb 2008 04:48:00 GMT http://m.tkk7.com/javafan/archive/2008/02/01/jclass_ana.html http://m.tkk7.com/javafan/comments/178817.html http://m.tkk7.com/javafan/archive/2008/02/01/jclass_ana.html#Feedback 0 http://m.tkk7.com/javafan/comments/commentRss/178817.html http://m.tkk7.com/javafan/services/trackbacks/178817.html 闃呰鍏ㄦ枃 ]]> 涓涓鍙朇lass鏂囦歡鐨勭ず渚嬬▼搴?/title> http://m.tkk7.com/javafan/archive/2008/02/01/rwclass.html鐙姹傝觸 鐙姹傝觸 Thu, 31 Jan 2008 20:11:00 GMT http://m.tkk7.com/javafan/archive/2008/02/01/rwclass.html http://m.tkk7.com/javafan/comments/178773.html http://m.tkk7.com/javafan/archive/2008/02/01/rwclass.html#Feedback 2 http://m.tkk7.com/javafan/comments/commentRss/178773.html http://m.tkk7.com/javafan/services/trackbacks/178773.html 1 package bytecodeResearch;
2
3 import java.io.BufferedInputStream;
4 import java.io.BufferedWriter;
5 import java.io.FileInputStream;
6 import java.io.FileWriter;
7 import java.io.IOException;
8
9 public class ReadAndWriteClass {
10
11 // 16榪涘埗鏁板瓧瀛楃闆?nbsp;
12 private static String hexString = " 0123456789ABCDEF " ;
13
14 /** */ /**
15 * 灝嗗瓧鑺傛暟緇勭殑鎸囧畾闀垮害閮ㄥ垎緙栫爜鎴?6榪涘埗鏁板瓧瀛楃涓?br />
16 * @param buffer 寰呯紪鐮佺殑瀛楄妭鏁扮粍
17 * @param length 鎸囧畾鐨勯暱搴?br />
18 * @return 緙栫爜鍚庤繛鎺ヨ屾垚鐨勫瓧絎︿覆
19 */
20 public static String encode( byte [] buffer, int length)
21 {
22 StringBuilder sbr = new StringBuilder();
23 // 灝嗗瓧鑺傛暟緇勪腑姣忎釜瀛楄妭鎷嗚В鎴?浣?6榪涘埗鏁存暟
24 for ( int i = 0 ;i < length;i ++ )
25 {
26 sbr.append(hexString.charAt((buffer[i]& 0xf0 ) >> 4 ));
27 sbr.append(hexString.charAt(buffer[i]& 0x0f ));
28 sbr.append(" " );
29 }
30 return sbr.toString();
31 }
32
33 /** */ /**
34 * 璇誨彇涓涓狢lass鏂囦歡錛屽皢鍏舵墍鏈夊瓧鑺傝漿鎹負16榪涘埗鏁存暟錛屽茍浠ュ瓧絎﹀艦寮忚緭鍑?br />
35 * @param inputPath 杈撳叆鏂囦歡鐨勫畬鏁磋礬寰?br />
36 * @param outputPath 杈撳嚭鏂囦歡鐨勫畬鏁磋礬寰?br />
37 * @throws IOException 璇誨啓榪囩▼涓彲鑳芥姏鍑虹殑寮傚父
38 */
39 public static void rwclass(String inputPath, String outputPath) throws IOException
40 {
41 // 璇誨彇Class鏂囦歡瑕佺敤瀛楄妭杈撳叆嫻?/span>
42 BufferedInputStream bis = new BufferedInputStream(
43 new FileInputStream(inputPath));
44 // 杈撳嚭杞崲鍚庣殑鏂囦歡瑕佺敤瀛楃杈撳嚭嫻?/span>
45 BufferedWriter bw = new BufferedWriter(
46 new FileWriter(outputPath));
47
48 int readSize = 16 ;
49 byte [] buffer_read = new byte [readSize];
50 String line;
51 String lineNumber = " 0000000 " ;
52 String strReplace;
53 int i = 0 ;
54 while ((readSize = bis.read(buffer_read, 0 ,readSize)) != - 1 )
55 {
56 line = encode(buffer_read,readSize);
57 strReplace = Integer.toHexString(i);
58 lineNumber = lineNumber.substring( 0 , 7 - strReplace.length());
59 lineNumber = lineNumber + strReplace;
60 line = lineNumber + " 0h: " + line;
61 bw.write(line);
62 bw.newLine();
63 i++ ;
64 }
65 bis.close();
66 bw.close();
67 }
68
69 /** */ /**
70 * 紼嬪簭鐨勫叆鍙f柟娉?br />
71 * @param args
72 * @throws IOException
73 */
74 public static void main(String[] args)
75 {
76 // 鎸囧畾杈撳叆銆佽緭鍑烘枃浠剁殑瀹屾暣璺緞
77 String inputPath = " L:/HelloWorld/HelloWorld.class " ;
78 String outputPath = " L:/HelloWorld/HelloWorld_ByteCode.txt " ;
79
80 try {
81 rwclass(inputPath, outputPath);
82 System.out.println(" Successfully ! " );
83 } catch (IOException ioe) {
84 System.err.println(" Something wrong with reading or writing ! " );
85 ioe.printStackTrace();
86 }
87
88 }
89
90 }
91
]]>
主站蜘蛛池模板:
免费一级特黄特色大片在线
|
亚洲性无码av在线 |
亚洲无限乱码一二三四区 |
日批视频网址免费观看 |
亚洲免费一级视频 |
亚洲精品国产精品乱码不卞 |
久久久久亚洲AV无码专区首JN |
国产亚洲精品91 |
91av在线免费视频 |
JLZZJLZZ亚洲乱熟无码 |
亚洲欧洲日韩综合 |
色影音免费色资源 |
亚洲日韩小电影在线观看 |
亚洲精品无码国产片 |
日韩免费高清大片在线 |
国产成人毛片亚洲精品 |
a级毛片免费网站 |
国产真人无遮挡作爱免费视频 |
久久精品国产亚洲AV嫖农村妇女 |
老湿机一区午夜精品免费福利
|
一个人看的www在线观看免费 |
久久亚洲国产午夜精品理论片 |
亚洲av无码成人精品区一本二本
|
久久水蜜桃亚洲AV无码精品 |
国产成人一区二区三区免费视频 |
曰韩无码AV片免费播放不卡 |
大学生一级特黄的免费大片视频
|
国产精品内射视频免费 |
亚洲福利在线观看 |
国产特黄一级一片免费 |
黄网址在线永久免费观看 |
亚洲福利一区二区 |
久久久久国产精品免费看 |
亚洲精品成人片在线观看精品字幕 |
男女猛烈xx00免费视频试看 |
亚洲一区视频在线播放 |
99在线热视频只有精品免费 |
亚洲精品久久久久无码AV片软件 |
成人在线视频免费 |
亚洲av成本人无码网站 |
久久亚洲国产中v天仙www |