標題:
tqc209
[打印本頁]
作者:
lon
時間:
2012-4-28 11:29
標題:
tqc209
import java.io.UnsupportedEncodingException;
public class tqc209 {
public static void main(String[] args) throws UnsupportedEncodingException {
String str="JAVA程式";
String a=tohex(str);
System.out.println(a);
String toBig5=new String(str.getBytes("Big5"),"ISO8859_1");
String b2hex=tohex(toBig5);
System.out.println(b2hex);
System.out.println(str);
}
private static String tohex(String str) {
String rex="";
char tmp;
for(int i=0;i<str.length();i++){
tmp=str.charAt(i);
String t="0000"+Integer.toHexString(tmp);
rex+=t.substring(t.length()-4)+" ";
}
return rex;
}
}
複製代碼
作者:
kim
時間:
2012-7-26 22:20
import java.io.UnsupportedEncodingException;
public class TQC209 {
/**
* @param args
*/
public static void main(String[] args) throws UnsupportedEncodingException
{
String str="JAVA程式";
String u2hex=toHex(str);
System.out.print("Unicode 碼16進位\t");
System.out.println(u2hex);
String toBig5=new String(str.getBytes("Big5"),"ISO8859_1");
String b2hex=toHex(toBig5);
System.out.print("Big5 碼16進位\t\t");
System.out.println(b2hex);
System.out.print("原字串\t\t\t\t");
System.out.println(str);
}
private static String toHex(String str) {
// TODO Auto-generated method stub
String res="";
char tmp;
for(int i=0;i<str.length();i++)
{
tmp=str.charAt(i);
String t="00000"+Integer.toHexString(tmp);
res +=t.substring(t.length()-4)+" ";
}
return res;
}
}
複製代碼
作者:
kim
時間:
2012-7-26 22:21
import java.io.UnsupportedEncodingException;
public class TQC209 {
public static void main(String[] args) throws UnsupportedEncodingException
{
String str="JAVA程式";
String u2hex=toHex(str);
System.out.print("Unicode 碼16進位\t");
System.out.println(u2hex);
String toBig5=new String(str.getBytes("Big5"),"ISO8859_1");
String b2hex=toHex(toBig5);
System.out.print("Big5 碼16進位\t\t");
System.out.println(b2hex);
System.out.print("原字串\t\t\t\t");
System.out.println(str);
}
private static String toHex(String str) {
// TODO Auto-generated method stub
String res="";
char tmp;
for(int i=0;i<str.length();i++)
{
tmp=str.charAt(i);
String t="00000"+Integer.toHexString(tmp);
res +=t.substring(t.length()-4)+" ";
}
return res;
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2