2020.8.27

一、今日学习内容

   1、文章统计统计一篇英文文章中单词的个数与行数。

 1 import java.io.FileReader;
 2 import java.io.IOException;
 3 import java.io.BufferedReader;
 4 public class English {
 5 
 6     public static void main(String[] args)throws IOException {
 7         readfiles();
 8     }
 9     public static void readfiles()throws IOException{
10         FileReader r=new FileReader("F://English.txt");
11         BufferedReader br=new BufferedReader(r);
12         int countWord=0;
13         int countLine=0;
14         String s=null;
15         while((s=br.readLine())!=null) {
16             System.out.println(s);
17             countWord += s.split("\\s+|,|\\.").length;
18             countLine++;
19         }
20         System.out.println("单词数为:"+countWord);
21         System.out.println("行数为:"+countLine);
22         r.close();
23         br.close();
24     }
25 }

 

 

二、遇到的问题

   对Java中read()和readLine()的用法不会用,对split()分割字符串的用法也不清楚

三、明日计划

  继续完成例题

 

 

posted @ 2020-08-27 19:23  小仙女W  阅读(134)  评论(0编辑  收藏  举报