vote up 2 vote down star

Hi there,

I have some current code and the problem is its creating a 1252 codepage file, i want to force it to create a UTF-8 file

Can anyone help me with this code, as i say it currently works... but i need to force the save on utf.. can i pass a parameter or something??

this is what i have, any help really appreciated

var out = new java.io.FileWriter( new java.io.File( path )),
        text = new java.lang.String( src || "" );
	out.write( text, 0, text.length() );
	out.flush();
	out.close();
flag

Please post code which passes the compiler, if possible. – JesperE Jun 16 at 13:42
it seems to be rhino (javascript) – dfa Jun 16 at 13:54

4 Answers

vote up 7 vote down check

Instead of using FileWriter, create a FileOutputStream. You can then wrap this in an OutputStreamWriter, which allows you to pass an encoding in the constructor. Then you can write your data to that.

link|flag
3  
... and curse at Sun not putting in a constructor to FileWriter which takes a Charset. – Jon Skeet Jun 16 at 13:42
It does seem like an odd oversight. And they still haven't fixed it. – skaffman Jun 16 at 13:45
1  
@Jon Skeet: Given that FileWriter is a wrapper for FileOutputStream that assumes the default encoding and buffer size, wouldn't that defeat the point? – R. Bemrose Jun 16 at 13:47
Sorry, I meant for OutputStreamWriter, not for FileOutputStream. – R. Bemrose Jun 16 at 13:49
thankyou .. it is now fixed.. writing a utf-8 file.. thanks again – mark smith Jun 20 at 6:14
vote up 4 vote down

Try this

try {
        Writer out = new BufferedWriter(new OutputStreamWriter(
            new FileOutputStream("outfilename"), "UTF8"));
        out.write(aString);
        out.close();
    } catch (UnsupportedEncodingException e) {
    } catch (IOException e) {
    }
link|flag
vote up 1 vote down
var out = new java.io.PrintWriter(new java.io.File(path), "UTF-8");
text = new java.lang.String( src || "" );
out.print(text);
out.flush();
out.close();
link|flag
vote up 0 vote down

Try using FileUtils.write from Apache Commons.

You should be able to do something like:

File f = new File("output.txt");
FileUtils.write(f, "Contents", "UTF-8");

This will create the file if it does not exist.

link|flag

Your Answer

Get an OpenID
or

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