本帖最后由 student 于 2013-5-23 15:26 编辑
写了一个小程序,实现的功能如下:
有一个文本文件,文件中有英文单词和中文字符,写一个程序读取该文件中的内容,
然后统计文件中每个英文单词出现的次数,并将统计结果输出到一个文本文件中。
想看详细的分析过程,请看我的博客:http://blog.csdn.net/lancedream/article/details/8944234
代码:- import java.io.BufferedReader;
- import java.io.BufferedWriter;
- import java.io.File;
- import java.io.FileReader;
- import java.io.FileWriter;
- import java.io.IOException;
- import java.util.Iterator;
- import java.util.Map;
- import java.util.Set;
- import java.util.TreeMap;
- //文件工具类
- class FileUtil {
- private static BufferedReader bufr = null;
- private static BufferedWriter bufw = null;
- // 创建TreeMap集合对象
- private static TreeMap<String, Integer> treeMap = new TreeMap<String, Integer>();
- // 统计英文单词出现的次数:参数in表示需要统计英文单词出现次数的文本文件,out表示将统计的结果输出到的文本文件
- public static void countWordTimes(File in, File out) {
- // 计数器
- int count = 0;
- try {
- // 创建缓冲输入流对象
- bufr = new BufferedReader(new FileReader(in));
- // 字符数组,保存英文单词
- String[] words = new String[1024];
- String len = null;
- // 循环读取文本文件中的内容,一次读取一行数据
- while ((len = bufr.readLine()) != null) {
- // 调用方法,将字符串分割成英文单词,返回这些单词组成的字符串数组
- words = englishWors(len);
- // 变量字符串数组
- for (int i = 0; i < words.length; i++) {
- String key = words[i];
- // 获取TreeMap对象中的键值
- Integer value = treeMap.get(key);
- if (!(value == null))
- count = value;
- count++;
- // 单词作为键,单词出现的次数作为键值,插入到TreeMap集合中
- treeMap.put(key, count);
- count = 0;// 归零,避免本次键值加到他键的键值上
- }
- }
- } catch (Exception e) {
- throw new RuntimeException("缓冲输入流对象失败!");
- } finally {
- if (bufr != null) {
- try {
- bufr.close();// 关闭缓冲输入流对象
- } catch (IOException e) {
- throw new RuntimeException("关闭缓冲输入流对象失败!");
- }
- }
- }
- writeToFile(out, treeMap);
- }
- // 将Map集合中的键值对写入到文件
- public static void writeToFile(File out, TreeMap<String, Integer> treeMap) {
- try {
- // 创建缓冲输出流对象
- bufw = new BufferedWriter(new FileWriter(out));
- // 将TreeMap集合转换成Set集合,因为Set集合有iterator迭代器
- Set<Map.Entry<String, Integer>> entrySet = treeMap.entrySet();
- // 迭代Set集合
- Iterator<Map.Entry<String, Integer>> it = entrySet.iterator();
- // 遍历集合
- while (it.hasNext()) {
- Map.Entry<String, Integer> entry = it.next();
- // 获取集合中的键
- String key = entry.getKey();
- // 获取集合中的键值
- int value = entry.getValue();
- // 将键和键值组成的键值对封装成字符串
- String len = new String(key + " = " + Integer.toString(value));
- bufw.write(len);// 将字符串len写入到文件中
- bufw.newLine();// 换行
- bufw.flush();// 刷新缓冲区
- }
- } catch (IOException e) {
- throw new RuntimeException("缓冲输出流对象创建失败!");
- } finally {
- if (bufw != null) {
- try {
- bufw.close();// 关闭缓冲输出流对象
- } catch (IOException e) {
- throw new RuntimeException("关闭缓冲输出流失败!");
- }
- }
- }
- }
- // 取出字符串中的英文单词
- public static String[] englishWors(String len) {
- // 所有字母小写化
- len = len.toLowerCase();
- // 匹配非英文字符为空格
- len = len.replaceAll("[^A-Za-z]", " ");
- // 将1到多个空格匹配为一个空格
- len = len.replaceAll("\\s+", " ");
- // 以空格为分隔符分割字符串,分割结果存入字符串数组中作为单词
- String[] words = len.split("\\s+");
- return words;
- }
- }
- // 主函数
- public class WordsCount {
- public static void main(String[] args) throws IOException {
- // 文件分隔符
- String separator = File.separator;
- /*
- * 将硬盘上的文本文件初始化为文件对象,in是需要读取的文本文件,该文件中有英文单词, 这里采用硬编码,如果没有目录D:\JavaTest
- * 则需要创建,并且在该目录下新建一个名为 Article.txt 的文本文件,并文件中输入一些英文句子(可以出现中文字符)
- */
- File in = new File("D:" + separator + "JavaTest" + separator
- + "Article.txt");
- // 将硬盘上的文本文件初始化为文件对象,out文件用于存储统计的结果
- File out = new File("D:" + separator + "JavaTest" + separator
- + "Result.txt");
- // 调用统计英文单词次数的方法
- FileUtil.countWordTimes(in, out);
- // 用记事本打开文本文件
- Runtime.getRuntime().exec("notepad " + out + "");
- }
- }
复制代码 |
|