How to convert an UTF String to ANSI and Create an ANSI text file in SSD with JAVA-ANDROID

后端 未结 1 1287
遥遥无期
遥遥无期 2021-01-06 12:59

I wrote a android app in java to get user answers and save them in a file. The problem is that this file is saved in utf-8. The end user will open these files in the IBM SPS

相关标签:
1条回答
  • 2021-01-06 13:02

    Strings are represented within the JVM as Unicode. When you write it out, you need to convert it to an appropriate character set.

    To do this, use an OutputStreamWriter and specify the Charset.

    OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream(file, true), 
                                                       "windows-1252");
    writer.append(textBody);
    writer.close();
    

    Regarding your first question:

    I think I know that to convert Strings to ANSI I should use:
    String unicode = new String(asciiBytes, "windows-1252");
    Is that correct?

    Given an array of bytes representing characters in the 'windows-1252' character set, this code will construct you the appropriate Java String (internally represented as Unicode within the JVM). This isn't "converting Strings to ANSI" ... it's doing the opposite: converting 'windows-1252' to Unicode.

    0 讨论(0)
提交回复
热议问题