統計一個字符串在文本文件中的出現次數


代碼實現:

package com.jn.test;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.Scanner;

public class StringTimes {
	 public static int getKeyStringCount(String str, String key) {          
         int count = 0;  
         int index = 0;             
         while((index = str.indexOf(key,index))!=-1){                 
             index = index + key.length();  
             count++;                 
         }              
         return count;  
     }  
    
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		File file = new File("D:/設計模式.txt");
		FileInputStream fis = null;
		try{
			fis = new FileInputStream(file);
			int len = 0;
			byte[] buf = new byte[1024];
			String str = null;
			while((len = fis.read(buf)) !=-1){
				str = new String(buf, 0, len,"GBK");			
			}
			Scanner sc  = new Scanner(System.in);
			System.out.println("請輸入你要查詢字符串:");
			 String key = sc.nextLine();  
             int count = getKeyStringCount(str,key);  
             System.out.println("文件中此字符串出現次數為:"+count+"次");  
		}catch(FileNotFoundException e){
			e.printStackTrace();
		} catch (UnsupportedEncodingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally{
			try {
				fis.close();
			} catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}
	}
}

  運行及結果:

請輸入你要查詢字符串:
設計模式
文件中此字符串出現次數為:10次

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM