- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章使用Java读取Word文件的简单例子分享由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
java读取word文档时,虽然网上介绍了很多插件poi、java2Word、jacob、itext等等,poi无法读取格式(新的API估计行好像还在处于研发阶段,不太稳定,做项目不太敢用);java2Word、jacob容易报错找不到注册,比较诡异,我曾经在不同的机器上试过,操作方法完全一致,有的机器不报错,有的报错,去他们论坛找高人解决也说不出原因,项目部署用它有点玄;itxt好像写很方便但是我查了好久资料没有见到过关于读的好办法。经过一番选择还是折中点采用rtf最好,毕竟rtf是开源格式,不需要借助任何插件,只需基本IO操作外加编码转换即可。rtf格式文件表面看来和doc没啥区别,都可以用word打开,各种格式都可以设定。 ----- 实现的功能:读取rtf模板内容(格式和文本内容),替换变化部分,形成新的rtf文档。 ----- 实现思路:模板中固定部分手动输入,变化的部分用$info$表示,只需替换$info$即可。 1、采用字节的形式读取rtf模板内容 2、将可变的内容字符串转为rtf编码 3、替换原文中的可变部分,形成新的rtf文档 主要程序如下: 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
public
String bin2hex(String bin) {
char
[] digital =
"0123456789ABCDEF"
.toCharArray();
StringBuffer sb =
new
StringBuffer(
""
);
byte
[] bs = bin.getBytes();
int
bit;
for
(
int
i =
0
; i < bs.length;i++) {
bit = (bs[i] &
0x0f0
) >>
4
;
sb.append(
"\\'"
);
sb.append(digital[bit]);
bit = bs[i] &
0x0f
;
sb.append(digital[bit]);
}
return
sb.toString();
}
public
String readByteRtf(InputStream ins, String path){
String sourcecontent =
""
;
try
{
ins =
new
FileInputStream(path);
byte
[] b =
new
byte
[
1024
];
if
(ins ==
null
) {
System.out.println(
"源模板文件不存在"
);
}
int
bytesRead =
0
;
while
(
true
) {
bytesRead = ins.read(b,
0
,
1024
);
// return final read bytes counts
if
(bytesRead == -
1
) {
// end of InputStream
System.out.println(
"读取模板文件结束"
);
break
;
}
sourcecontent +=
new
String(b,
0
, bytesRead);
// convert to string using bytes
}
}
catch
(Exception e){
e.printStackTrace();
}
return
sourcecontent ;
}
|
以上为核心代码,剩余部分就是替换,从新组装java中的String.replace(oldstr,newstr);方法可以实现,在这就不贴了。源代码部分详见附件。 运行源代码前提: c盘创建YQ目录,将附件中"模板.rtf"复制到YQ目录之下,运行OpreatorRTF.java文件即可,就会在YQ目录下生成文件名如:21时15分19秒_cheney_记录.rtf 的文件。 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
|
package
com;
import
java.io.File;
import
java.io.FileInputStream;
import
java.io.FileWriter;
import
java.io.IOException;
import
java.io.InputStream;
import
java.io.PrintWriter;
import
java.text.SimpleDateFormat;
import
java.util.Date;
public
class
OperatorRTF {
public
String strToRtf(String content){
char
[] digital =
"0123456789ABCDEF"
.toCharArray();
StringBuffer sb =
new
StringBuffer(
""
);
byte
[] bs = content.getBytes();
int
bit;
for
(
int
i =
0
; i < bs.length; i++) {
bit = (bs[i] &
0x0f0
) >>
4
;
sb.append(
"\\'"
);
sb.append(digital[bit]);
bit = bs[i] &
0x0f
;
sb.append(digital[bit]);
}
return
sb.toString();
}
public
String replaceRTF(String content,String replacecontent,
int
flag){
String rc = strToRtf(replacecontent);
String target =
""
;
if
(flag==
0
){
target = content.replace(
"$timetop$"
,rc);
}
if
(flag==
1
){
target = content.replace(
"$info$"
,rc);
}
if
(flag==
2
){
target = content.replace(
"$idea$"
,rc);
}
if
(flag==
3
){
target = content.replace(
"$advice$"
,rc);
}
if
(flag==
4
){
target = content.replace(
"$infosend$"
,rc);
}
return
target;
}
public
String getSavePath() {
String path =
"C:\\YQ"
;
File fDirecotry =
new
File(path);
if
(!fDirecotry.exists()) {
fDirecotry.mkdirs();
}
return
path;
}
public
String ToSBC(String input){
char
[] c = input.toCharArray();
for
(
int
i =
0
; i < c.length; i++){
if
(c[i] ==
32
){
c[i] = (
char
)
12288
;
continue
;
}
if
(c[i] <
127
){
c[i] = (
char
) (c[i] +
65248
);
}
}
return
new
String(c);
}
public
void
rgModel(String username, String content) {
// TODO Auto-generated method stub
Date current=
new
Date();
SimpleDateFormat sdf=
new
java.text.SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss"
);
String targetname = sdf.format(current).substring(
11
,
13
) +
"时"
;
targetname += sdf.format(current).substring(
14
,
16
) +
"分"
;
targetname += sdf.format(current).substring(
17
,
19
) +
"秒"
;
targetname +=
"_"
+ username +
"_记录.rtf"
;
String strpath = getSavePath();
String sourname = strpath+
"\\"
+
"模板.rtf"
;
String sourcecontent =
""
;
InputStream ins =
null
;
try
{
ins =
new
FileInputStream(sourname);
byte
[] b =
new
byte
[
1024
];
if
(ins ==
null
) {
System.out.println(
"源模板文件不存在"
);
}
int
bytesRead =
0
;
while
(
true
) {
bytesRead = ins.read(b,
0
,
1024
);
// return final read bytes counts
if
(bytesRead == -
1
) {
// end of InputStream
System.out.println(
"读取模板文件结束"
);
break
;
}
sourcecontent +=
new
String(b,
0
, bytesRead);
// convert to string using bytes
}
}
catch
(Exception e){
e.printStackTrace();
}
String targetcontent =
""
;
String array[] = content.split(
"~"
);
for
(
int
i=
0
;i<array.length;i++){
if
(i==
0
){
targetcontent = replaceRTF(sourcecontent, array[i], i);
}
else
{
targetcontent = replaceRTF(targetcontent, array[i], i);
}
}
try
{
FileWriter fw =
new
FileWriter(getSavePath()+
"\\"
+ targetname,
true
);
PrintWriter out =
new
PrintWriter(fw);
if
(targetcontent.equals(
""
)||targetcontent==
""
){
out.println(sourcecontent);
}
else
{
out.println(targetcontent);
}
out.close();
fw.close();
System.out.println(getSavePath()+
" 该目录下生成文件"
+ targetname +
" 成功"
);
}
catch
(IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public
static
void
main(String[] args) {
// TODO Auto-generated method stub
OperatorRTF oRTF =
new
OperatorRTF();
String content =
"2008年10月12日9时-2008年10月12日6时~我们参照检验药品的方法~我们参照检验药品的方法~我们参照检验药品的方法~我们参照检验药品的方法"
;
oRTF.rgModel(
"cheney"
,content);
}
}
|
使用POI读取word文件的表格数据的示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<span style=
"font-size:14px;"
>
package
com.poi.world;
import
java.io.FileInputStream;
import
org.apache.poi.hwpf.HWPFDocument;
import
org.apache.poi.hwpf.usermodel.Paragraph;
import
org.apache.poi.hwpf.usermodel.Range;
import
org.apache.poi.hwpf.usermodel.Table;
import
org.apache.poi.hwpf.usermodel.TableCell;
import
org.apache.poi.hwpf.usermodel.TableIterator;
import
org.apache.poi.hwpf.usermodel.TableRow;
import
org.apache.poi.poifs.filesystem.POIFSFileSystem;
public
class
POI_Word{
public
static
void
main(String[] args){
try
{
String[] s=
new
String[
20
];
FileInputStream in=
new
FileInputStream(
"D:\\mayi.doc"
);
POIFSFileSystem pfs=
new
POIFSFileSystem(in);
HWPFDocument hwpf=
new
HWPFDocument(pfs);
Range range =hwpf.getRange();
TableIterator it=
new
TableIterator(range);
int
index=
0
;
while
(it.hasNext()){
Table tb=(Table)it.next();
for
(
int
i=
0
;i<tb.numRows();i++){
//System.out.println("Numrows :"+tb.numRows());
TableRow tr=tb.getRow(i);
for
(
int
j=
0
;j<tr.numCells();j++){
//System.out.println("numCells :"+tr.numCells());
// System.out.println("j :"+j);
TableCell td=tr.getCell(j);
for
(
int
k=
0
;k<td.numParagraphs();k++){
//System.out.println("numParagraphs :"+td.numParagraphs());
Paragraph para=td.getParagraph(k);
s[index]=para.text().trim();
index++;
}
}
}
}
// System.out.println(s.toString());
for
(
int
i=
0
;i<s.length;i++){
System.out.println(s[i]);
}
}
catch
(Exception e) {
e.printStackTrace();
}
}
}</span>
|
。
最后此篇关于使用Java读取Word文件的简单例子分享的文章就讲到这里了,如果你想了解更多关于使用Java读取Word文件的简单例子分享的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
今天我在一个 Java 应用程序中看到了几种不同的加载文件的方法。 文件:/ 文件:// 文件:/// 这三个 URL 开头有什么区别?使用它们的首选方式是什么? 非常感谢 斯特凡 最佳答案 file
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我有一个 javascript 文件,并且在该方法中有一个“测试”方法,我喜欢调用 C# 函数。 c# 函数与 javascript 文件不在同一文件中。 它位于 .cs 文件中。那么我该如何管理 j
需要检查我使用的文件/目录的权限 //filePath = path of file/directory access denied by user ( in windows ) File fil
我在一个目录中有很多 java 文件,我想在我的 Intellij 项目中使用它。但是我不想每次开始一个新项目时都将 java 文件复制到我的项目中。 我知道我可以在 Visual Studio 和
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我有 3 个组件的 Twig 文件: 文件 1: {# content-here #} 文件 2: {{ title-here }} {# content-here #}
我得到了 mod_ldap.c 和 mod_authnz_ldap.c 文件。我需要使用 Linux 命令的 mod_ldap.so 和 mod_authnz_ldap.so 文件。 最佳答案 从 c
我想使用PIE在我的项目中使用 IE7。 但是我不明白的是,我只能在网络服务器上使用 .htc 文件吗? 我可以在没有网络服务器的情况下通过浏览器加载的本地页面中使用它吗? 我在 PIE 的文档中看到
我在 CI 管道中考虑这一点,我应该首先构建和测试我的应用程序,结果应该是一个 docker 镜像。 我想知道使用构建环境在构建服务器上构建然后运行测试是否更常见。也许为此使用构建脚本。最后只需将 j
using namespace std; struct WebSites { string siteName; int rank; string getSiteName() {
我是 Linux 新手,目前正在尝试使用 ginkgo USB-CAN 接口(interface) 的 API 编程功能。为了使用 C++ 对 API 进行编程,他们提供了库文件,其中包含三个带有 .
我刚学C语言,在实现一个程序时遇到了问题将 test.txt 文件作为程序的输入。 test.txt 文件的内容是: 1 30 30 40 50 60 2 40 30 50 60 60 3 30 20
如何连接两个tcpdump文件,使一个流量在文件中出现一个接一个?具体来说,我想“乘以”一个 tcpdump 文件,这样所有的 session 将一个接一个地按顺序重复几次。 最佳答案 mergeca
我有一个名为 input.MP4 的文件,它已损坏。它来自闭路电视摄像机。我什么都试过了,ffmpeg , VLC 转换,没有运气。但是,我使用了 mediainfo和 exiftool并提取以下信息
我想做什么? 我想提取 ISO 文件并编辑其中的文件,然后将其重新打包回 ISO 文件。 (正如你已经读过的) 我为什么要这样做? 我想开始修改 PSP ISO,为此我必须使用游戏资源、 Assets
给定一个 gzip 文件 Z,如果我将其解压缩为 Z',有什么办法可以重新压缩它以恢复完全相同的 gzip 文件 Z?在粗略阅读了 DEFLATE 格式后,我猜不会,因为任何给定的文件都可能在 DEF
我必须从数据库向我的邮件 ID 发送一封带有附件的邮件。 EXEC msdb.dbo.sp_send_dbmail @profile_name = 'Adventure Works Admin
我有一个大的 M4B 文件和一个 CUE 文件。我想将其拆分为多个 M4B 文件,或将其拆分为多个 MP3 文件(以前首选)。 我想在命令行中执行此操作(OS X,但如果需要可以使用 Linux),而
快速提问。我有一个没有实现文件的类的项目。 然后在 AppDelegate 我有: #import "AppDelegate.h" #import "SomeClass.h" @interface A
我是一名优秀的程序员,十分优秀!