作业格式
- 课程名称:软件工程1916|W(福州大学)
- 作业要求:结对第二次—文献摘要热词统计及进阶需求
- 结对学号:221600118,221600120
- 作业目标:
-一、基本需求:实现一个能够对文本文件中的单词的词频进行统计的控制台程序。
-二、进阶需求:在基本需求实现的基础上,编码实现顶会热词统计器。 - Github
- 签入记录:
作业正文
PSP表格
解题思路
实现过程
性能
关键代码
public class CountChar {
public static int getNumber(String path){
int num=0;
try{
File file = new File(path);
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
int cc;
char ccc;
while((cc=br.read())!=-1) {
ccc=(char)cc;
if(ccc=='\n') {
num--;
}
if(cc>=0&&cc<=127) {
num++;
}
}
br.close();
return num;
}catch(Exception e) {
e.printStackTrace();
}
return 0;
}
}