java课程设计-敏感词汇分析程序.doc
《java课程设计-敏感词汇分析程序.doc》由会员分享,可在线阅读,更多相关《java课程设计-敏感词汇分析程序.doc(47页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、Four short words sum up what has lifted most successful individuals above the crowd: a little bit more.-author-datejava课程设计-敏感词汇分析程序ARM体系结构与编程课程设计软 件 学 院课程设计报告书课程名称 Java编程技术 设计题目 敏感词汇分析程序 专业班级 学 号 姓 名 指导教师 2011 年 06 月1设计时间2011年06月6日-2011年06月10日2 设计目的通过此次课程设计,系统、全面地了解与重温了有关java界面生成、字节流的输入输出功能、循环语句的应用
2、、以及包的生成和引用等。3设计任务敏感词汇分析程序。要求如下:(1)使用图形用户界面实现。(2)任意选择一个文本文件,分析该文件,如果存在敏感词汇,报告每个词出现的次数。(3)敏感词汇保存在sentive.txt文件中,每个词占一行,至少设置10个敏感词汇。(4)系统使用的GUI组件不得少于5种,越全面越好,但要合适(和谐界面)。4 设计内容 4.1 总体设计程序一共包含以下四个类:1.CFileChooseLis:设置监听器与触发器;2.CFileChooser:判断文件是否符合筛选要求;3.CAnalyzeLis:把目标文件与字典文件进行比较,找出相同的敏感词,并在此过程中捕获异常,并判断
3、用户是否已经选中目标文件与字典文件,若异常则报错;4.FileTextChecher:形成初始图形用户界面,包括按钮等组件,并在主函数中创建类,通过类的构造函数进行初始化。4.2 详细设计4.2.1 CFileChooseLis模块public class CFileChooseLis implements ActionListener public CFileChooseLis(TextComponent rst) t = rst; TextComponent t; public void actionPerformed(ActionEvent e) if (t = null) return
4、;CFileChooser chooser = new CFileChooser(); if (chooser.choosedFile() File f = chooser.getSelectedFile(); t.setText(f.getAbsolutePath(); 4.2.2 CFileChooser模块:import java.io.File;import javax.swing.JFileChooser;public class CFileChooser extends JFileChooser public boolean accept(File f) if (f = null)
5、 return false; if (f.isDirectory() return true; if (f.getAbsolutePath().endsWith(.txt) return true; return false; public boolean choosedFile() int state = this.showOpenDialog(null); File f = this.getSelectedFile(); if (accept(f) & state = JFileChooser.APPROVE_OPTION) return true; return false; 4.2.3
6、 CAnalyzeLis模块:public class CAnalyzeLis implements ActionListener File analyzeF; File dictionaryF; TextComponent rst; Window window; public CAnalyzeLis(FileTextChecker w, TextComponent tcomp) analyzeF = w.getAnalyzeFile(); dictionaryF = w.getDictionFile(); rst = tcomp; window = w; public void action
7、Performed(ActionEvent e) (FileTextChecker)window).initFile(); analyzeF = (FileTextChecker)window).getAnalyzeFile(); dictionaryF = (FileTextChecker)window).getDictionFile(); if (analyzeF = null) JOptionPane.showMessageDialog(window, 缺少分析文件.); return; if (dictionaryF = null) JOptionPane.showMessageDia
8、log(window, 缺少词典文件.); return; Set set = new TreeSet(); String text = null; Hashtable table = new Hashtable(); try text = readTextFormFile(analyzeF); readWordFormFile(set, dictionaryF); Iterator t = set.iterator(); while (t.hasNext() String s = t.next(); if (s.length() = 1) String reg = s; Pattern pa
9、t = Ppile(reg); Matcher mat = pat.matcher(text); while (mat.find() if (table.get(s) != null) table.get(s).add(); else table.put(s, new IntString(1); Iterator t2 = table.keySet().iterator();StringBuffer result = new StringBuffer(); while (t2.hasNext() String r = t2.next(); result.append(r); result.ap
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- java 课程设计 敏感 词汇 分析 程序
限制150内