I am sorry if it has been asked before. I am trying to process a text file using Java. The text file is exported from MS SQLServer. When I open it in PSPad (sort of text editor in which I can view any file in hex format), it tells me that my text file is in UTF-16LE. Since I am getting it from someone else, it is quite possible.

Now my Java program is not able to deal with that format. So I wanted to know if there is any way by which I can either convert my text file in ASCII format or do some preprocessing or anything? I CAN modify the file.

Any help is greatly appreciated.

Thanks.

EDIT 1

I wrote this program, but it is not working as expected. If I see the output file in PSPad, I can see each character as a 2-byte char, e.g. '2' is 3200 instead of just 32; 'M' is 4D00 instead of just 4D, etc. The though says the encoding of output file is UTF-8. I am kind of confused here. Can anyone tell me what am I doing wrong?

public static void main(String[] args) throws Exception {

        try {
            // Open the file that is the first
            // command line parameter
            FileInputStream fstream = new FileInputStream(
                    "input.txt");
            // Get the object of DataInputStream
            DataInputStream in = new DataInputStream(fstream);
            BufferedReader br = new BufferedReader(new InputStreamReader(in,"UTF-16LE"));
            String strLine;
            // Read File Line By Line
            while ((strLine = br.readLine()) != null) {
                // Write to the file
                writeToFile(strLine);
            }
            // Close the input stream
            in.close();
        } catch (Exception e) {// Catch exception if any
            System.err.println("Error: " + e.getMessage());
        }

        System.out.println("done.");
    }

    static public void writeToFile(String str) {
        try {
            OutputStreamWriter writer = new OutputStreamWriter(new FileOutputStream("output.txt", true), "UTF-8");
            BufferedWriter fbw = new BufferedWriter(writer);
            fbw.write(str);
            fbw.close();
        } catch (Exception e) {// Catch exception if any
            System.err.println("Error: " + e.getMessage());
        }
    } 

EDIT 2

Here are the snapshots:

input file in PSPad (a free hex viewer)enter image description here

output file in PSPad enter image description here

this is what i was expecting to see: enter image description here

link|improve this question

java text is utf 16. java.sun.com/javase/technologies/core/basic/intl/… so may be doing some thing wrong in your code – Vivek Goel May 31 '11 at 17:58
Show us your code and let us know how you try to process the file. – Thor May 31 '11 at 18:04
1  
@Bhushan: If the size is roughly half of the input, then it's almost certainly correctly UTF-8 encoded. Maybe your editor automatically does the conversion to UTF-16 internally (many text editors only support a single internal format). – Joachim Sauer Jun 1 '11 at 14:05
1  
@Bhushan: how is that unexpected? Your program expects UTF-8 encoded text. If you pass in UTF-8 encoded text, it works. If you pass in non-UTF-8 encoded text it doesn't work. – Joachim Sauer Jun 1 '11 at 14:09
1  
@Bhushan: yes, but that's the "fault" of the editor: it autodetects the encoding of the text file (a dangerous operation, by the way). – Joachim Sauer Jun 1 '11 at 14:48
show 10 more comments
feedback

3 Answers

Create an InputStreamReader for charset UTF-16LE and you will be all set.

link|improve this answer
Thanks a lot bmargulies, I will try it out. – Learner May 31 '11 at 18:48
feedback

InputStreamReader will let you load your UTF-16EL in memory. You can then perform all string manipulations you need. Then, you can save into ASCII format using OutputStreamWriter. Use CharSet to select formats.

link|improve this answer
Thanks a lot JVerstry, I will try it out. – Learner May 31 '11 at 18:47
feedback
up vote 1 down vote accepted

Just found a solution.

http://www.fileformat.info/convert/text/utf2utf.htm

Lets you upload and convert between the encodings.

Its not a permanent solution though, since my file is 700MB+. So I will try out some solutions posted by others.

This small software helps:

http://www.kalytta.com/tools.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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