String str = "ิ";
System.out.println(str.length());
byte[] b = str.getBytes();
System.out.println(b[0]);
System.out.println(b[1]);
System.out.println(b[2]);
以上是我的code.A spez char在str
。它的長度是1,但是byte
是3。如何使它成爲一個?如何打印此char使用java代碼?而在我的android手機中,這個字符不能刪除。一個奇怪的字符
你能更詳細點嗎? – Blip
閱讀Unicode以及如何在編程中處理它。 – Julian