当前位置:
首页 > temp > 简明python教程 >
-
Java 读取txt文件生成Word文档
本文将以Java程序代码为例介绍如何读取txt文件中的内容,生成Word文档。在编辑代码前,可参考如下代码环境进行配置:
- IntelliJ IDEA
- Free Spire.Doc for Java
- Txt文档
导入Jar包
两种方法可在Java程序中导入jar文件
1. Maven仓库下载导入。
在pom.xml中配置如下:
<repositories> <repository> <id>com.e-iceblue</id> <url>https://repo.e-iceblue.cn/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>e-iceblue</groupId> <artifactId>spire.doc.free</artifactId> <version>3.9.0</version> </dependency> </dependencies>
2. 手动导入。
需先下载jar包到本地,解压,找到lib路径下的jar文件。然后在Java程序中打开“Project Structure”窗口,然后执行如下步骤导入:
找到本地路径下的jar文件,添加到列表,然后导入:
读取txt生成Word
代码大致步骤如下:
- 实例化Document类的对象。然后通过Document.addSection()方法和Section.addParagraph()方法添加节和段落。
- 读取txt文件:创建InputStreamReader类的对象,构造方法中传递输入流和指定的编码表名称。通过BufferedReader类,创建字符流缓冲区。将读取的txt内容通过Paragraph.appendText()方法添加到段落。
- 调用Document.saveToFile(string fileName, FileFormat fileFormat)方法保存为Word文档。
import com.spire.doc.*; import com.spire.doc.documents.Paragraph; import com.spire.doc.documents.ParagraphStyle; import java.awt.*; import java.io.*; public class ReadTextAndCreateWord { public static void main(String[] args) throws IOException { //实例化Document类的对象,并添加section和paragraph Document doc = new Document(); Section section = doc.addSection(); Paragraph paragraph = section.addParagraph(); //读取txt文件 String encoding = "GBK"; File file = new File("test.txt"); if (file.isFile() && file.exists()) { InputStreamReader isr = new InputStreamReader(new FileInputStream(file), encoding); BufferedReader bufferedReader = new BufferedReader(isr); String lineTXT; while ((lineTXT = bufferedReader.readLine()) != null) { paragraph.appendText(lineTXT);//在段落中写入txt内容 } isr.close(); } //设置段落样式,并应用到段落 ParagraphStyle style = new ParagraphStyle(doc); style.setName("newstyle"); style.getCharacterFormat().setBold(true); style.getCharacterFormat().setTextColor(Color.BLUE); style.getCharacterFormat().setFontName("幼圆"); style.getCharacterFormat().setFontSize(12); doc.getStyles().add(style); paragraph.applyStyle("newstyle"); paragraph.getFormat().setMirrorIndents(true); //保存为docx格式的Word doc.saveToFile("addTxttoWord.docx", FileFormat.Docx_2013); doc.dispose(); } }
Word创建结果:
注意事项
代码中的txt文件和word保存路径为IDEA程序项目文件夹路,如:F:\IDEAProject\CreateWord_Doc\addTxttoWord.docx ,文件路径可定义为其他路径。
原文:https://www.cnblogs.com/Yesi/p/15638399.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数