从文件中读取时添加了空格......?

时间:2012-10-16 23:21:01

标签: java file spaces

我正在尝试从项目的文件中读取一个单词及其相应的代码。这是我的代码,它读得很好,只是出于某种原因,在一些但不是全部代码之后添加了空格。我不明白为什么会这样。

代码是:

public void loadDictionary(String file){
    String fileName=file;
    String fileNameTwo=file;
    //Coder c=new Coder();
    String string;
    String code;
    String s=null;
    try{//System.out.println("1");
        FileReader freader=new FileReader(fileName);
        FileReader freaderTwo=new FileReader(fileNameTwo);
        //System.out.println("1");
        BufferedReader inFile=new BufferedReader(freader);
        BufferedReader inFileTwo=new BufferedReader(freaderTwo);
        //System.out.println("2");          
        //System.out.println("3");
        if ((s=inFile.readLine())==null){
            System.out.println("5");
            throw new EmptyFileException("Nothing in file to upload.");
        }
        while ((s=inFileTwo.readLine())!=null){
            //System.out.println("4");
            //System.out.println(s);
            String[] tokens=s.split(" ");
            string=tokens[0];
            //System.out.println(string);
            code=tokens[1];
            //System.out.println(code);
            this.insert(string, code); 
            System.out.println(code+".");               
        }//end while
        //this.printCoder();
    }//end try
    catch(EmptyFileException ex){
    }
    catch(IOException ex){
    System.out.println("Error in uploading dictionary.");
    }   

}//end method

...输出是(代码):

 5721.
 9963.
 4432   .
 1143   .
 6402   .
 3333   .
 4924       .
 1429       .
 3110   .
 3036   .
 2736   .
 8064.

这些时间段用于显示添加了多少空格。我只是在system.out.println()中添加了一个句点。

编辑:这些时期并不恰到好处......但你明白了。实际上有时候空间比它显示的更多/更少。

1 个答案:

答案 0 :(得分:3)

我的猜测是文件中有更多空格/标签然后您认为 - 您遇到的空格实际上是标签。

通常,如果要根据空格进行拆分,则应包括所有空格,甚至是标签。

使用以下命令重试拆分:

String[] tokens=s.split("\\s+");

它将与正则表达式"\\s+"分开 - 这意味着至少(可能更多)某种空间。