I am writing into a java file through
FileWriter fstream = new FileWriter("someFile.java");
BufferedWriter out = new BufferedWriter(fstream);
out.write(strContents);
// Close the output stream
out.close();
but after writing I found it appended some special characters in shape of box like [], but those special characters are only visible in specific text editor like EditPlus.
How to avoid those special characters while writing or is it specific to some editors only.