1

我正在尝试扫描文本文件并将它们添加到地图中,地图和一切正常。但是,当涉及到文本文件中的“输入”或空白行时,扫描仪似乎停止了。这是我的问题

这是我的扫描仪/映射器代码块

class OneButtonListener implements ActionListener
{
    @Override
    public void actionPerformed(ActionEvent evt)
    {
        final JFileChooser oneFC = new JFileChooser();
        oneFC.showOpenDialog(AnalysisFrame.this);
        String newLine = null;
        oneFC.getName(null);
        int returnVal = 0;
        File fileOne = oneFC.getSelectedFile();

        Scanner input = null;        
        try {
            input = new Scanner(fileOne);
        } 
        catch (FileNotFoundException ex) {
            Logger.getLogger(AnalysisFrame.class.getName()).log(Level.SEVERE, null,
                            ex);
        }                       
        inputText = input.nextLine(); 
        String[] words = inputText.split("[ \n\t\r,.;:!?(){}]");

        for(int i = 0; i < words.length; i++){
            key = words[i].toLowerCase(); 

            if (words[i].length() > 1){
                if (mapOne.get(key) == null){
                    mapOne.put(key, 1);
                }
                else {
                    value1 = mapOne.get(key).intValue();
                    value1++;
                    apOne.put(key, value1);
                }
            } 
         }
     }
}

谢谢你的帮助!

4

4 回答 4

1

您应该在循环内扫描,直到到达文件末尾,例如:

StringBuilder builder = new StringBuilder();
while(input.hasNextLine()){
    builder.append(input.nextLine());
    builder.append(" "); // might not be necessary
}
String inputText = builder.toString();

使用的替代方法split是使用带有and 的DelimiterScanner使用hasNext()andnext()代替hasNextLine()and nextLine()。尝试一下,看看它是否有效。

例如:

scanner.useDelimiter("[ \n\t\r,.;:!?(){}]");
ArrayList<String> tokens = new ArrayList<String>();
while(scanner.hasNext()){
    tokens.add(scanner.next());
}

String[] words = tokens.toArray(new String[0]); // optional

另外在旁注中,没有必要JFileChooser每次都创建:

class OneButtonListener implements ActionListener
{
    private final JFileChooser oneFC = new JFileChooser();

    @Override
    public void actionPerformed(ActionEvent evt)
    {
于 2012-06-05T04:27:13.947 回答
0

很长一段时间没有使用 Java,我可能会走得很远,但看起来你只调用 inputText = input.nextLine();了一次,所以你只得到一行是有道理的。大概你想nextLine()在一个循环中调用,以便它不断给你行,直到它到达文件的末尾。

于 2012-06-05T04:27:32.910 回答
0
String contentsOfWholeFile = new Scanner(file).useDelimiter("\\Z").next();
于 2012-06-05T05:27:11.240 回答
0

split("[ \n\t\r,.;:!?(){}]") 添加\f

于 2012-06-05T07:01:11.010 回答