I am trying to write a Java app that will run on a linux server but that will process files generated on legacy Windows machines using cp-1252 as the character set. Is there anyway to encode these files as utf-8 instead of the cp-1252 it is generated as?
|
|
You can read and write text data in any encoding that you wish. Here's a quick code example:
If this still 'chokes' on read, see if you can verify that the the original encoding is what you think it is. In this case I've specified windows-1252, which is the java string for cp-1252. |
|||||||||||
|
|
If the file names as well as content is a problem, the easiest way to solve the problem is setting the
This way Java will use ISO-8859-1 for file names, which is probably good enough. To run the Java program you still have to set the
If no ISO-8859-1 locale is available you can generate one with
This way Java should use CP1252 by default for all I/O, including file names. Expanded further here: http://jonisalonen.com/2012/java-and-file-names-with-invalid-characters/ |
||||
|
|