从csv文件中读取unicode字符

时间:2013-01-16 06:25:21

标签: java file-io unicode

我有csv file,其中包含英文单词,后跟印地语翻译。我正在尝试阅读csv文件并使用它进行进一步处理。 csv文件如下所示:

English,,Hindi,,,  
,,,,,  
Cat,,बिल्ली,,,  
Rat,,चूहा,,,  
abandon,,छोड़ देना,त्याग देना,लापरवाही की स्वतन्त्रता,जाने देना  

我试图逐行读取csv文件并显示已编写的内容。代码段(Java)如下:

   //Step 2. Read csv file and get the string.
            FileInputStream fis = null;
            BufferedReader br = null;
            try {
                fis = new FileInputStream(new File(csvFile));
            } catch (FileNotFoundException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }

            boolean startSeen = true;
            if(fis != null) {
                try {
                    br = new BufferedReader(new InputStreamReader(fis, "UTF-8"));
                } catch (UnsupportedEncodingException e2) {
                    // TODO Auto-generated catch block
                    e2.printStackTrace();
                    System.out.print("Unsupported encoding");
                }
                String line = null;
                if(br != null) {
                    try {
                        while((line = br.readLine()) != null) {
                            if(line.contains("English") == true) {
                                startSeen = true;
                            }

                            if((startSeen == true) && (line != null)) {
                                StringBuffer sbuf = new StringBuffer();
                                //Step 3. Parse the line.
                                sbuf.append(line);
                                System.out.println(sbuf.toString());
                            }
                        }
                    } catch (IOException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                    }
                }  
}

但是,我得到以下输出:

English,,Hindi,,,
,,,,,
Cat,,??????,,,
Rat,,????,,,
abandon,,???? ????,????? ????,???????? ?? ???????????,???? ????  

我的Java并不是那么好,虽然我已经在SO上发了很多帖子,但我需要更多的帮助才能弄清楚这个问题的确切原因。

3 个答案:

答案 0 :(得分:4)

对于读取文本文件,最好使用字符流,例如直接使用java.util.Scanner而不是FileInputStream。关于编码,您必须首先确保要读取的文本文件保存为“UTF-8”,否则保存为“UTF-8”。我还注意到在我的系统中,我必须将我的java源文件保存为'UTF-8',以使其正确显示hindi char。

但是我想建议更简单的方法来读取csv文件,如下所示:

Scanner scan = new Scanner(new File(csvFile));
while(scan.hasNext()){
   System.out.println(scan.nextLine());
}

see the output

答案 1 :(得分:2)

我认为你的控制台无法显示印地语字符。试试

System.out.println("Cat,,बिल्ली,,,");

测试

答案 2 :(得分:0)

正如上面的答案所讨论的那样;解决方案是两个步骤 1)将您的txt文件保存为UTF-8 2)更改Java代码的属性以使用UTF-8 在Eclipse中;右键单击Java文件; 属性 - > Resurces - >文本文件编码 - >其他 - > UTF-8

参考上面给出的截图 http://howtodoinjava.com/2012/11/27/how-to-compile-and-run-java-program-written-in-another-language/