suppose i want to have characters from languages other than english through my
java programme.
how do i aceive this using what
import java.util.*;
class Test{
public static void main(
String [] a){
char c='\u3059';
System.setProperty("file.encoding","MS932");
System.setProperty("user.language","ja");
System.setProperty("sun.io.unicode.encoding","UnicodeLittle");
}
System.out.println(c);
}
instead of printing japanese characters it print ? sign though the os is japnese .what could be the reason
[ April 05, 2002: Message edited by: yogi na ]