一、今日学习内容:
今天继续练习实验八的内容。
二、遇到的问题:
无
三、明日计划:
明天练习实验八的习题。
今日练习的具体内容如下:
1.文章统计
统计一篇英文文章中单词的个数与行数。
提示:统计行数可通过计算其中的回车符号进行。
import java.io.FileReader; import java.io.IOException; import java.io.BufferedReader; public class English { public static void main(String[] args)throws IOException { readfiles(); } public static void readfiles()throws IOException{ FileReader r=new FileReader("F://English.txt"); BufferedReader br=new BufferedReader(r); int countWord=0; int countLine=0; String s=null; while((s=br.readLine())!=null) { System.out.println(s); countWord += s.split("\\s+|,|\\.").length; countLine++; } System.out.println("单词数为:"+countWord); System.out.println("行数为:"+countLine); r.close(); br.close(); } }