如何在 Java 中查找文本文件中的字符串?

java 8object oriented programmingprogramming更新于 2025/4/15 8:22:17

以下 Java 程序接受来自用户的字符串值,验证文件是否包含给定的字符串并打印单词出现的次数。

示例

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class FindingWordFromFile {
   public static void main(String args[]) throws FileNotFoundException {
      //从用户那里读取要查找的单词
      Scanner sc1 = new Scanner(System.in);
      System.out.println("输入要查找的单词");
      String word = sc1.next();
      boolean flag = false;
      int count = 0;
      System.out.println("该行内容");
      //读取文件内容
      Scanner sc2 = new Scanner(new FileInputStream("D:\sampleData.txt"));
      while(sc2.hasNextLine()) {
         String line = sc2.nextLine();
         System.out.println(line);
         if(line.indexOf(word)!=-1) {
            flag = true;
            count = count+1;
         }
      }
      if(flag) {
         System.out.println("File contains the specified word");
         System.out.println("Number of occurrences is: "+count);
      } else {
         System.out.println("File does not contain the specified word");
      }
   }
}

输出

输入要查找的单词
the
该行内容
Tutorials Point originated from the idea that there exists a class of readers who respond better 
to online content and prefer to learn new skills at their own pace from the comforts of their drawing rooms.
The journey commenced with a single tutorial on HTML in 2006 and elated by the response it generated, 
we worked our way to adding fresh tutorials to our repository which now proudly flaunts a wealth of 
tutorials and allied articles on topics ranging from programming languages to web designing to academics and much more.
40 million readers read 100 million pages every month
Our content and resources are freely available and we prefer to keep it that way to encourage our readers
 acquire as many skills as they would like to. We don’t force our readers to sign up with us or submit 
their details either. No preconditions and no impediments. Simply Easy Learning!
File contains the specified word
Number of occurrences is: 3

相关文章