JAVA16進位制字串轉字元或數字
阿新 • • 發佈:2018-11-07
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
網友的問題: http://topic.csdn.net/u/20081225/10/949ae344-34d5-4b5d-93ca-f57e0dda5057.html
比如我有一個string str = "0xA0";
這樣一個串,有沒有什麼辦法可以轉成char s = 0xA0;
注:不是str裡單個字元轉換,想要的不是srt.charAt(index)這樣單個轉換;
不知道我表達清楚沒有?
果子的答案已經很好了,我這裡是我的個人習慣做法,呵呵。
- /**
- * 16進位制字串轉字元或數字。
- *
- * @author 老紫竹 JAVA世紀網(java2000.net)
- *
- */
- public class Test {
- public static void main(String[] args) {
- String s =
- int b = Integer.parseInt(s.replaceAll("^0[x|X]", ""), 16);
- System.out.println((char)b);
- }
- }