|
|
От: |
VaGon
|
|
| Дата: | 24.01.06 04:32 | ||
| Оценка: | 3 (1) | ||
include java.io;
...
String s="Что-то на русском";
try{
System.out.println(new String(s.getBytes("Cp866")));
}catch(UnsupportedEncodingException ex){
System.out.println("UnsupportedEncodingException in StringRecoder.recode with message: "+ex.getMessage());
}