StringBuffer contents=new StringBuffer();
BufferedReader input = new BufferedReader(new FileReader("/home/xyz/abc.txt"));
String line = null; //not declared within while loop
while (( line = input.readLine()) != null){
contents.append(line);
}
System.out.println(contents.toString());
File abc.txt
contains
u0905u092du0940 u0938u092eu092f u0939u0948 u091cu0928u0924u093e u091cu094b u091au093eu0939u0924u0940 u0939u0948 u092
I want to dispaly in Hindi language in console using Java.
if i simply print like this
String str="u0905u092du0940 u0938u092eu092f u0939u0948 u091cu0928u0924u093e u091cu094b u091au093eu0939u0924u0940 u0939u0948 u092";
System.out.println(str);
then it works fine but when i try to read from a file it doesn't work.
help me out.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…