In my java source code I wanted to write Non-AscII characters i.e some characters in UTF-8 format to a text file using java :
File f = new File("U.txt");
FileWriter writer = new FileWriter(f);
writer.write("लता"); // hindi text
writer.close();
I am using notepad++ as a text editor and I save the file with encoding UTF-8. But when I compile the java file I get an error like :
illegal character: \187
import java.io.*;
^
Where am I making a mistake ? What do i need to do ? This is a compilation error !
FileOutputStreamto pass the endcoding as parameter – tozka Oct 11 '12 at 14:26