Фрагмент кода для медитации...
Jan. 21st, 2008 06:14 pm![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
private String getLocalString(String value) { int length = value.length(); byte[] byteArray = new byte[length]; for (int n = 0; n < length; n++) { byteArray[n] = (byte)value.charAt(n); } return new String(byteArray); }
no subject
Date: 2008-01-21 08:03 pm (UTC)char c = 'й';
byte b = (byte)c;
c = (char)b;