毕业论文

打赏
当前位置: 毕业论文 > 计算机论文 >

网络特定文本信息抓取及统计(14)

时间:2017-02-27 11:47来源:毕业论文
4.4.2 保存文本的核心代码 public static bool ExportData(DataGridView srcDgv,string fileName) { string type = fileName.Substring(fileName.IndexOf(.)+1);/ bool flag = false; if (type.Equals(doc,


4.4.2 保存文本的核心代码
   public static bool ExportData(DataGridView srcDgv,string fileName)            {
            string type = fileName.Substring(fileName.IndexOf(".")+1);/           
             bool flag = false;
            if (type.Equals("doc", StringComparison.CurrentCultureIgnoreCase))
            {
                string cd = System.IO.Directory.GetCurrentDirectory();
                object path = cd+"/"+fileName;
            Object none=System.Reflection.Missing.Value;
            Word.Application wordApp = new Word.Application();
            Word.Document document = wordApp.Documents.Add(ref none, ref none, ref none, ref none);
            Word.Table table= document.Tables.Add(document.Paragraphs.Last.Range, srcDgv.Rows.Count+1, srcDgv.Columns.Count, ref none, ref none);
            try
            {
            for (int i = 0; i < srcDgv.Columns.Count; i++)
            {
            table.Cell(1, i + 1).Range.Text = srcDgv.Columns[i].HeaderText;
            }
            for (int i = 0; i < srcDgv.Rows.Count; i++)
            {
            for (int j = 0; j < srcDgv.Columns.Count; j++)
            {
            table.Cell(i + 2, j + 1).Range.Text = srcDgv[j, i].Value.ToString();
            }
            }
            document.SaveAs(ref path, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none, ref none);
            ((Word._Document)document).Close(ref none, ref none, ref none);
            flag = true;
            }
   
4.5 程序界面设计
4.5.1 设计原则
    符合Windows界面准则,Windows界面通常有标题栏、显示栏、人机交互对话框等。
    按控件的重要性安排其位置。
    确保界面元素一致性,同一个软件窗口大小、颜色搭配、线型粗细要保持一致。
4.5.2 窗口设计
图4.5程序界面图
    搜索输入内容:输入关键词。
    摘要显示:显示摘要的基本信息包括新闻机构、网址、时间等
    测试按钮:分词系统测试 网络特定文本信息抓取及统计(14):http://www.youerw.com/jisuanji/lunwen_3461.html
------分隔线----------------------------
推荐内容