程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA編程入門知識 >> native2ascii一點用法

native2ascii一點用法

編輯:JAVA編程入門知識

  native2ascii命令的一種用法!

  在JDK文件中這樣描述這個命令的:

  native2ascii Convert text to Unicode Latin-1.

  語法如下:

  native2ascii [options] [inputfile [outputfile]]

  具體的選項有:

  -reverse

  Perform the reverse operation: convert a file with Latin-1 and/or

  Unicode encoded characters to one with native-encoded characters.

  -encoding encoding_name

  Specify the encoding name which is used by the conversion procedure.

  The default encoding is taken from System property file.encoding. The

  encoding_name string must be taken from the first column of the table of

  supported encodings in the Supported Encodings document.

  -Joption

  Pass option to the Java virtual machine, where option is one of the

  options described on the reference page for the java application launcher.

  For example, -J-Xms48m sets the startup memory to 48 megabytes

  有時當我們反編譯別人的代碼的時候,會看到這樣的代碼句子,System.out.println("ConnectionPool--u521Du59CBu5316u6570u636Eu5E93u5

  F02u5E38==>>" + exception.toString());

  當然這裡只是一個簡單的打印出錯信息的句子,我們可以用native2ascii命令將它轉換成原本的中文的。

  做法如下:如有個文件名叫:Test.class.先用反編譯工具將其反編譯,我用的是DJ Java Jecompiler,反編譯後的文件擴展名為:".jad"

  

import java.io.PrintStream;
public class Test
{
public static void main(String args[])
   {
     String s =
"u770Bu770Bu6211u6D4Bu8BD5u7684u6548u679CuFF01";
     System.out.println((new
StringBuilder()).append("u5475u5475uFF1A").append(s).toString());
   }
}

  這是反編譯後的文件。

  反編譯後會有一個相應的文件產生。可能擴展名不會直接是".java",沒關系,直接將反編譯好的文件擴展名改為.java,如我這裡,改為test.java。然後開啟DOS,然後進入到相應的目錄:如下:

  J:>

  J:>dir

  2004-11-11 10:10         588 Test.jad

  J:>

  將Test.jad改名為Test.java,然後用如下命令:

  J:>native2ascii -reverse -encoding gb2312 Test.java Test_gb2312.java

  結合上面講的這個命令的幾個選項來看,這裡用到了兩個選項:

  -reverse 和 -encoding ,-encoding的後面是指定要轉換成的編碼。我要將其顯示為中文,所以我選用了gb2312,Test.java是剛才反編譯後改名的文件,Test_gb2312.java就是轉碼過後的代碼,用editplus打開看看Test_gb2312.java文件,會發現中文顯示出來了,這就轉碼成功了,這個命令你用過了嗎?

  呵呵,在命令行還可以實時轉碼,打開DOS輸入native2ascii命令,回車,然後會有光標在閃,千萬不要以為程序沒執行完,光標閃是在等待你輸入字符,切換到中文輸入狀態,輸入,“java我愛你”後回車,會看到這樣顯示:“javau6211u7231u4f60"

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved