Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 5 down vote accepted

My advice would be to avoid using FileWriter completely. It always uses the platform default encoding, which is rarely a good idea.

I would suggest using FileOutputStream wrapped in an OutputStreamWriter - then you just need to specify an appropriate encoding, such as UTF-8. Obviously you'll still need to use an editor which supports UTF-8, and you may need to tell it the encoding... but at least you'll have code which always writes in the same way, regardless of OS and system properties.

share|improve this answer

Normal notepad application can't show the special character wriiten in the file. There is no any problem with your code. It is limitation of notepad.

share|improve this answer
The point mentioned by you is correct , just wanted to know, was I doing something wrong. – bunta Jun 29 '11 at 11:33
As per Jon Skeet, you should FileOutputStream instead of FileWritter. But it will gives you same result. So you are not doing wrong. – Kamahire Jun 29 '11 at 11:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.