我在eclipse中编写了这段代码来获取一些阿拉伯语单词然后打印它们
public class getString {
public static void main(String[] args) throws Exception {
PrintStream out = new PrintStream(System.out, true, "UTF-8");
Reader r = new InputStreamReader(System.in, "UTF-8");
char[] str ;
str= new char[10];
r.read(str);
out.println(str);
}
}
但输出是这样的:
关注
شیرین</p>
有什么帮助吗??
提前感谢您的关注