博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
控制台程序读取WIKI形式的TXT文件并一表格的形式显示在Word中
阅读量:5063 次
发布时间:2019-06-12

本文共 2609 字,大约阅读时间需要 8 分钟。

1 'Imports System.Collections.Generic 2 'Imports System.Text 3 'Imports System.IO 4 'Imports office = Microsoft.Office.Core 5 'Imports word = Microsoft.Office.Interop.Word 6 Module Module1 7  8     Sub Main(ByVal args As String()) '这里的参数args是字符串数组,传递的是\bin\Debug\中的文本文件,可以传递多个文件 9         Dim theApplication As New Microsoft.Office.Interop.Word.Application  '添加引用COM的“Microsoft Word 12.0 Object Library”10         theApplication.Visible = True11         Dim theDocument As Microsoft.Office.Interop.Word.Document12         theDocument = theApplication.Documents.Add()13         Dim reader As System.IO.TextReader          '添加引用COM的“Microsoft Visual Basic for Applications Extensibility 5.3”14         reader = New System.IO.StreamReader("woshi.txt")  '原语句是reader = New System.IO.StreamReader(args(0))15         'C:\Users\user\Documents\Visual Studio 2008\Projects\ConsoleApplication1\ConsoleApplication1\bin\Debug\woshi.txt16 17         Dim separators(1) As String18         separators(0) = "||"19         Dim rowCount As Integer = 020         Dim columnCount As Integer = 021 22         Dim rowList As New System.Collections.Generic.List(Of String)23         Dim row As String = reader.ReadLine()24 25         While row IsNot Nothing26             rowCount += 127             rowList.Add(row)28 29             If rowCount = 1 Then30                 Dim splitHeaderRow As String() = row.Split(separators, StringSplitOptions.None)31 32                 columnCount = splitHeaderRow.Length - 233             End If34 35             row = reader.ReadLine()36         End While37 38         Dim range As Microsoft.Office.Interop.Word.Range = theDocument.Range()39         Dim table As Microsoft.Office.Interop.Word.Table = range.Tables.Add(range, rowCount, columnCount)40 41         Dim columnindex As Integer = 142         Dim rowindex As Integer = 143 44         For Each r As String In rowList45             Dim splitrow As String() = r.Split(separators, StringSplitOptions.None)46 47             For columnindex = 1 To columnCount48                 Dim cell As Microsoft.Office.Interop.Word.Cell = table.Cell(rowindex, columnindex)49                 cell.Range.Text = splitrow(columnindex)50             Next51             rowindex += 152         Next53 54         table.Rows(1).Range.Bold = 155         table.AutoFitBehavior(Microsoft.Office.Interop.Word.WdAutoFitBehavior.wdAutoFitContent)56 57         System.Console.WriteLine("Table complete.")58         System.Console.ReadLine()59 60         theApplication.Quit(False)61 62     End Sub63 64 End Module

转载于:https://www.cnblogs.com/xiehaofeng/p/6914409.html

你可能感兴趣的文章
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
oracle连接的三个配置文件(转)
查看>>
pytho logging
查看>>
Python内置函数(29)——help
查看>>
oracle导出/导入 expdp/impdp
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
Android TextView加上阴影效果
查看>>
《梦断代码》读书笔记(三)
查看>>
Java8 Lambda表达应用 -- 单线程游戏server+异步数据库操作
查看>>
[Unity3D]Unity3D游戏开发MatchTarget的作用攀登效果实现
查看>>
AngularJS学习篇(一)
查看>>
关于Xshell无法连接centos6.4的问题
查看>>
css3动画——基本准则
查看>>
输入月份和日期,得出是今年第几天
查看>>
pig自定义UDF
查看>>
Kubernetes 运维学习笔记
查看>>
spring security 11种过滤器介绍
查看>>