Java无法读取文本文件

时间:2017-01-30 20:57:39

标签: java parsing text

我正在尝试阅读.txt文件并搜索一个单词,但程序只是以Process finished with exit code 0结束。

import java.io.*;
import java.util.ArrayList;
import java.util.Scanner;

public class LogParser {
    static  Scanner file;
    static ArrayList text = new ArrayList();
    static String path = new String();
    static String check = new String();
    private static int a = 0;
    static  Scanner inpunt = new Scanner(System.in);


    public static void main (String[] args) {

        System.out.println("Input path to file");
        path = inpunt.nextLine();
        File texts = new File(path);

        try {
            file = new Scanner(new File(path)); 
        } catch (Exception e) {
            System.out.println("Can't open file");
        }

        try {
            while (file.hasNext()) {
                text.add(a, file.nextLine());
                check = text.get(a).toString();
                if (check.contains("cap"))
                    System.out.println("Allert!!!!!!!!!!!!!!!!!!!!!!!!!!!" + text.get(a));
                a = a + 1;

            }
        } catch (Exception e) {
           // System.out.println("Can't open file");
            if (file.toString().contains("cap"))
                System.out.println("cap" + "Path to file: " + path);
            System.out.println(text.size());
        }

    }

}

.txt文件中的文字是:

let's try read this cap

如果我尝试打开xml文件,一切正常。我的问题只在于txt文件。

1 个答案:

答案 0 :(得分:2)

如评论中所述,您的路径变量未设置。您正在尝试创建一个新文件并传入尚未实例化的路径。

相关问题