java统计一个文件的字符数,单词数,行数



package A9chapter;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;

/*
 * InputStreamReader(new FileInputStream(绝对文件名))进行文件的读取
 * BufferedReader(文件读取)调用readLine()的方法
 */

public class A9_17 {

 public static void main(String[] args) throws Exception {
  // 统计一个文件的字符数,单词数,行数
  Scanner input = new Scanner(System.in);
  System.out.println("please input path:");
  String path = input.next();
  int countChar = 0;
  int countword = 0;
  int countline = 0;
  InputStreamReader isr = new InputStreamReader(new FileInputStream(path));
  //InputStreamReader将字符流向字节流转换。
  //InputStreamReader isr = new InputStreamReader(new FileInputStream(绝对文件名));
  //用来读取文件中的数据
  BufferedReader br = new BufferedReader(isr);//使用缓冲区,可以使用缓冲区的read(),readLine()方法;
  /*readLine每次读取一行,read()读取整个文件,是生成文件内容最直接的方式,如果连续面向行的处理则是没有必要的
  可直接综合为
  BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(path)));
  */
  while(br.read()!=-1)//read()=-1代表数据读取完毕
  {
   String s = br.readLine();
   countChar += s.length();//字符个数就是字符长度
   countword += s.split(" ").length;//split() 方法用于把一个字符串分割成字符串数组,字符串数组的长度,就是单词个数
   countline++;//因为是按行读取,所以每次增加一即可计算出行的数目
  }
  isr.close();//关闭文件
  System.out.println("char cont "+countChar);
  System.out.println("word count "+countword );
  System.out.println("line count "+countline); 
  }
}

扫码关注一起随时随地学习!!!就在洋葱攻城狮,更多精彩,等你来!!

java统计一个文件的字符数,单词数,行数_第1张图片

 

你可能感兴趣的:(java)