实验步骤:1、首先定义了一个读取字符流对象,用来读取java.txt文件中的单词;2、定义集合类对象来存储读取的字符;3、当遇到字母或数字时便存放在临时字符串中,将其加入集合统计次数;4、输出结果。调试过程:这次实验中,调试测试数据的时候不够全面,以至于测试完并没有发现全部问题,另外由于对函数不够熟悉,有些系统已有函数没有发现,自己写了一遍后才发现,然后又删掉,浪费时间。从这个实验中,我对文件的读取进一步加深的印象,也对程序调试的理解学到了许多。实验结果:student出现2次am出现1次a出现2次study出现1次good出现3次day出现2次everyone出现1次I出现1次Hello出现1次up出现1次and出现1次疑难与小结:此次实验让我重新复习了文件和文件输出流、字符流,以及集合类,把老师课堂上讲的理论与实践结合起来,通过实验找到了自己不足之处,对类的方法更有许多不理解,在以后的学习中一定要把知识整理好,综合起来,这样在运用的时候才能得心应手。代码:importjava.util.*;importjava.util.regex.*;importjava.io.*;publicclassread{publicstaticvoidmain(Stringargs[])throwsException{/*//使用循环读取文本文件中的字符Filef=newFile(java.txt);FileInputStreamfis=newFileInputStream(f);charch;System.out.println(该文件中的内容如下:);for(inti=0;if.length();i++){ch=(char)fis.read();System.out.print(ch);}System.out.println();fis.close();*/BufferedReaderbr=newBufferedReader(newFileReader(java.txt));StringBuffersb=newStringBuffer();SetStringsingleSet=newHashSetString();Stringtemp=br.readLine();while(null!=temp){sb.append(temp+);temp=br.readLine();}String[]Str=sb.toString().split([^A-Za-z0-9]);for(Stringstring:Str)singleSet.add(string);for(StringchildString:singleSet){System.out.print(childString);intcount=0;for(StringfatherString:Str){if(fatherString.equals(childString)){count++;}}System.out.println(出现+count+次);}}}