Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove BOM from string in Java

I have string in file, that contains BOM (from UTF-8). I want to convert this string to win-1251 and put it in file.

I trying to remove BOM from string in this way:

out.write(l.replace('\uFEFF','\0') + "\n");

But it don't work. Why?

Output of this string in win-1251 file:

?1,...SOME_TEXT_HERE

First "?" sign is illegal.

like image 514
nkuhta Avatar asked Nov 10 '14 15:11

nkuhta


1 Answers

You're replacing the BOM with U+0000, rather than with an empty string. You should replace the BOM with the empty string, e.g.

out.write(l.replace("\uFEFF", "") + "\n");
like image 195
Jon Skeet Avatar answered Sep 28 '22 16:09

Jon Skeet