0

我正在尝试读取文本文件,搜索所有有效的 IP 地址并打印它们。使用 Scanner 类读取文件,文件的全部内容存储在字符串中;然后我使用 Java 的 util.regex Pattern 和 Matcher 来搜索所有有效的 IP 地址并一一打印出来。这是我到目前为止写的代码:

    String inp ="";
    File file = new File("C:\\input.txt");
    try {
        Scanner scan = new Scanner(file);
        while(scan.hasNextLine()) {
            inp += scan.nextLine() + " ";
        }
    } catch (FileNotFoundException f) {
        f.printStackTrace();
    }

    System.out.println("File inp string is "+inp);
    Pattern pattern = 
        Pattern.compile("^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)");
    Matcher match = pattern.matcher(inp);
    while(match.find()) {
        System.out.println("IP found: "+match.group());
    }

该文件的内容如下:

127.0.0.1 1:00 AM
User entered host
255.1.2.2 11:00 PM
127.0.0.1 1:00 AM

我得到的输出是:

File inp string is 127.0.0.1 1:00 AM User entered host 255.1.2.2 11:00 PM 127.0.0.1 1:00 AM 
IP found: 127.0.0.1

这是我从输入字符串中获得的唯一 IP。我不明白为什么模式匹配器会忽略其他 3 个 IP。任何人都可以帮忙吗?

4

1 回答 1

2

从您的正则表达式的开头删除,或在您从文件中读取的每一行之后^添加新的行标记。\n

Also don't concatenate lines of your file with += operator because it creates new String every time you do it. Instead use StringBuilder#append(yourLine).

于 2013-02-14T01:59:44.217 回答