0004-jacob操作word文档

2023-10-18 02:32
文章标签 文档 操作 word jacob 0004

本文主要是介绍0004-jacob操作word文档,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

使用场景:将后台数据做word文档保存,支持客户端下载

操作步骤:

1.首先制定word模板,制作格式如下:

编号:$id$     发生时间:$occur_time$

2.后天调用jacob.ajr包,编写WordTemplate类

import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.ComThread;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
/**
 * jacob操作MSword类
 * 
 * @author
 */
public class WordTemplate {
 // word文档
 private Dispatch doc;
 // word运行程序对象
 private ActiveXComponent word;
 // 所有word文档集合
 private Dispatch documents;
 // 选定的范围或插入点
 private Dispatch selection;
 private boolean saveOnExit = true;
 public WordTemplate() {
  if (word == null) {
   word = new ActiveXComponent("Word.Application");
   word.setProperty("Visible", new Variant(false)); // 不可见打开word
   word.setProperty("AutomationSecurity", new Variant(3)); // 禁用宏
  }
  if (documents == null)
   documents = word.getProperty("Documents").toDispatch();
 }
 /**
  * 设置退出时参数
  * 
  * @param saveOnExit
  *            boolean true-退出时保存文件,false-退出时不保存文件
  */
 public void setSaveOnExit(boolean saveOnExit) {
  this.saveOnExit = saveOnExit;
 }
 /**
  * 创建一个新的word文档
  * 
  */
 public void createNewDocument() {
  doc = Dispatch.call(documents, "Add").toDispatch();
  selection = Dispatch.get(word, "Selection").toDispatch();
 }
 /**
  * 打开一个已存在的文档
  * 
  * @param docPath
  */
 public void openDocument(String docPath) {
  doc = Dispatch.call(documents, "Open", docPath).toDispatch();
  selection = Dispatch.get(word, "Selection").toDispatch();
 }
 /**
  * 把插入点移动到文件首位置
  * 
  */
 public void moveStart() {
  if (selection == null)
   selection = Dispatch.get(word, "Selection").toDispatch();
  Dispatch.call(selection, "HomeKey", new Variant(6));
 }
 /**
  * 从选定内容或插入点开始查找文本
  * 
  * @param toFindText
  *            要查找的文本
  * @return boolean true-查找到并选中该文本,false-未查找到文本
  */
 @SuppressWarnings("static-access")
 public boolean find(String toFindText) {
  if (toFindText == null || toFindText.equals(""))
   return false;
  // 从selection所在位置开始查询
  Dispatch find = word.call(selection, "Find").toDispatch();
  // 设置要查找的内容
  Dispatch.put(find, "Text", toFindText);
  // 向前查找
  Dispatch.put(find, "Forward", "True");
  // 设置格式
  Dispatch.put(find, "Format", "True");
  // 大小写匹配
  Dispatch.put(find, "MatchCase", "True");
  // 全字匹配
  Dispatch.put(find, "MatchWholeWord", "True");
  // 查找并选中
  return Dispatch.call(find, "Execute").getBoolean();
 }
 /**
  * 把选定选定内容设定为替换文本
  * 
  * @param toFindText
  *            查找字符串
  * @param newText
  *            要替换的内容
  * @return
  */
 public boolean replaceText(String toFindText, String newText) {
  this.moveStart();
  if (!find(toFindText))
   return false;
  Dispatch.put(selection, "Text", newText);
  return true;
 }
 /**
  * 文件保存或另存为
  * 
  * @param savePath
  *            保存或另存为路径
  */
 public void save(String savePath) {
  Dispatch.call(Dispatch.call(word, "WordBasic").getDispatch(),
    "FileSaveAs", savePath);
 }
 /**
  * 关闭全部应用
  * 
  */
 public void close() {
  // closeDocument();
  if (word != null) {
   Dispatch.call(word, "Quit");
   word = null;
  }
  selection = null;
  documents = null;
 }
 public void openWord(boolean makeVisible) {
  // 启动com的线程
  ComThread.InitSTA();
  // 打开word(如果word未开启时)
  if (word == null) {
   word = new ActiveXComponent("Word.Application");
  }
  // 设置word是可见或不可见(true:显示;false:不显示)
  Dispatch.put(word, "Visible", new Variant(makeVisible));
 }
}

3.在service实现替换,并通过流传递到前台

public void getWorkorderInfo(String id, HttpServletResponse response)
throws BusinessException {
// WordTemplate wordTemplate=new WordTemplate();
String string = this.getClass().getClassLoader().getResource("")
.getPath();
String s = string.substring(1);
String templetPath = s + "finish.doc"; // 模版文件
WordTemplate word2 = new WordTemplate();
//String templetPath = "d:\\finish.doc"; // 模版文件
String otPath = "d:/" + id + ".doc"; // 保存文件

try {
// 是否显示打开word
word2.openWord(false);
// 打开模版文件

word2.openDocument(templetPath);
WorkOrderInfo workOrderInfo = workOrderInfoMapper
.queryWorkOrderInfoDetail(id);
System.out.println(workOrderInfo.getDownTime());
List<WorkOrderLog> workOrderLogList = workOrderLogMapper
.queryWorkOrderLogById(id);
List<String> list = new ArrayList<String>();
String logmergeString = "";
for (int i = 0; i < workOrderLogList.size(); i++) {
logmergeString = workOrderLogList.get(i).getOperatorLog();
list.add(logmergeString);


}
workOrderInfo.setWorkOrderLog(list);

//映射的使用
Class clazz = workOrderInfo.getClass();
// 得打WorkOrderInfo的所有属性
Field[] fils = clazz.getDeclaredFields();
// Map<String,String> map = new HashMap<String,String>();
Method m2 = null;
for (int i = 0; i < fils.length; i++) {
System.out.println(fils[i].getName());
String name = fils[i].getName();
m2 = clazz.getDeclaredMethod("get"
+ name.substring(0, 1).toUpperCase()
+ name.substring(1));



word2.save(otPath);

} catch (Exception ex) {
ex.printStackTrace();
} finally {

// 关闭Word
word2.close();
try {

//这里需要特别注意,需要延迟一定时间,否则有可能在word2.close();还未关闭的时候,downloadDoc(response, otPath, id + ".doc");

//已经将该文件打开,在后面删除的时候,无法将word2.save(otPath);的word文档删除掉。
TimeUnit.SECONDS.sleep(1L);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
downloadDoc(response, otPath, id + ".doc");
File file =new File(otPath);
if (file.isFile() && file.exists()) {
file.getAbsoluteFile().delete();
}

}


}


4.文件下载类

import java.io.BufferedOutputStream;
import java.io.OutputStream;
import java.net.URLEncoder;
import javax.servlet.http.HttpServletResponse;

public class FileDownload {
/**
* @param response 
* @param filePath//文件完整路径(包括文件名和扩展名)
* @param fileName//下载后看到的文件名
* @return  文件名
*/
public static void fileDownload(final HttpServletResponse response, String filePath, String fileName) throws Exception{  
    
   byte[] data = FileUtil.toByteArray2(filePath);  
   fileName = URLEncoder.encode(fileName, "UTF-8");  
   response.reset();  
   response.setHeader("Content-Disposition", "attachment; filename=\"" + fileName + "\"");  
   response.addHeader("Content-Length", "" + data.length);  
   response.setContentType("application/x-msdownload;charset=UTF-8");  
   OutputStream outputStream = new BufferedOutputStream(response.getOutputStream());  
   outputStream.write(data);  
   outputStream.flush();  
   outputStream.close();
   response.flushBuffer();
   

}

5.文件公共类

import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.nio.ByteBuffer;
import java.nio.MappedByteBuffer;
import java.nio.channels.FileChannel;
import java.nio.channels.FileChannel.MapMode;


public class FileUtil {

/**
* 创建目录

* @param destDirName
*            目标目录名
* @return 目录创建成功返回true,否则返回false
*/
public static boolean createDir(String destDirName) {
File dir = new File(destDirName);
if (dir.exists()) {
return false;
}
if (!destDirName.endsWith(File.separator)) {
destDirName = destDirName + File.separator;
}
// 创建单个目录
if (dir.mkdirs()) {
return true;
} else {
return false;
}
}


/**
* 删除文件

* @param filePathAndName
*            String 文件路径及名称 如c:/fqf.txt
* @param fileContent
*            String
* @return boolean
*/
public static void delFile(String filePathAndName) {
try {
String filePath = filePathAndName;
filePath = filePath.toString();
java.io.File myDelFile = new java.io.File(filePath);
myDelFile.delete();


} catch (Exception e) {
System.out.println("删除文件操作出错");
e.printStackTrace();


}


}

/**
* 读取到字节数组0

* @param filePath //路径
* @throws IOException
*/
public static byte[] getContent(String filePath) throws IOException {
File file = new File(filePath);
long fileSize = file.length();
if (fileSize > Integer.MAX_VALUE) {
System.out.println("file too big...");
return null;
}
FileInputStream fi = new FileInputStream(file);
byte[] buffer = new byte[(int) fileSize];
int offset = 0;
int numRead = 0;
while (offset < buffer.length
&& (numRead = fi.read(buffer, offset, buffer.length - offset)) >= 0) {
offset += numRead;
}
// 确保所有数据均被读取
if (offset != buffer.length) {
throw new IOException("Could not completely read file "
+ file.getName());
}
fi.close();
return buffer;
}


/**
* 读取到字节数组1

* @param filePath
* @return
* @throws IOException
*/
public static byte[] toByteArray(String filePath) throws IOException {


File f = new File(filePath);
if (!f.exists()) {
throw new FileNotFoundException(filePath);
}
ByteArrayOutputStream bos = new ByteArrayOutputStream((int) f.length());
BufferedInputStream in = null;
try {
in = new BufferedInputStream(new FileInputStream(f));
int buf_size = 1024;
byte[] buffer = new byte[buf_size];
int len = 0;
while (-1 != (len = in.read(buffer, 0, buf_size))) {
bos.write(buffer, 0, len);
}
return bos.toByteArray();
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
bos.close();
}
}


/**
* 读取到字节数组2

* @param filePath
* @return
* @throws IOException
*/
public static byte[] toByteArray2(String filePath) throws IOException {


File f = new File(filePath);
if (!f.exists()) {
throw new FileNotFoundException(filePath);
}


FileChannel channel = null;
FileInputStream fs = null;
try {
fs = new FileInputStream(f);
channel = fs.getChannel();
ByteBuffer byteBuffer = ByteBuffer.allocate((int) channel.size());
while ((channel.read(byteBuffer)) > 0) {
// do nothing
// System.out.println("reading");
}
return byteBuffer.array();
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
try {
channel.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
fs.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}


/**
* Mapped File way MappedByteBuffer 可以在处理大文件时,提升性能

* @param filename
* @return
* @throws IOException
*/
public static byte[] toByteArray3(String filePath) throws IOException {


FileChannel fc = null;
RandomAccessFile rf = null;
try {
rf = new RandomAccessFile(filePath, "r");
fc = rf.getChannel();
MappedByteBuffer byteBuffer = fc.map(MapMode.READ_ONLY, 0,
fc.size()).load();
//System.out.println(byteBuffer.isLoaded());
byte[] result = new byte[(int) fc.size()];
if (byteBuffer.remaining() > 0) {
// System.out.println("remain");
byteBuffer.get(result, 0, byteBuffer.remaining());
}
return result;
} catch (IOException e) {
e.printStackTrace();
throw e;
} finally {
try {
rf.close();
fc.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

}

6.注意项

将jacob-1.17-M2-x64.dll、jacob-1.17-M2-x86.dll拷贝放到Java\jdk1.6.0_45\jre\bin下面,或若为32位系统放在C:\Windows\System32下;若为64位系统放C:\Windows\SysWOW64下,把jar包拷贝到相应目录下

通过maven导入的方法:

1.创建e:/wordapplier/文件夹,将下载好的文件放在该文件夹下面
2.在cmd命令中执行以下
mvn install:install-file -DgroupId=com.jacob -DartifactId=jacob -Dversion=1.17-M2 -Dfile=e:/wordapplier/jacob.jar -Dpackaging=jar -DgeneratePom=true
3.在pom.xml文件中配置
<dependency>
<groupId>com.jacob</groupId>
<artifactId>jacob</artifactId>
<version>1.17-M2</version>
</dependency>

这篇关于0004-jacob操作word文档的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/229609

相关文章

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

使用C#代码在PDF文档中添加、删除和替换图片

《使用C#代码在PDF文档中添加、删除和替换图片》在当今数字化文档处理场景中,动态操作PDF文档中的图像已成为企业级应用开发的核心需求之一,本文将介绍如何在.NET平台使用C#代码在PDF文档中添加、... 目录引言用C#添加图片到PDF文档用C#删除PDF文档中的图片用C#替换PDF文档中的图片引言在当

详解C#如何提取PDF文档中的图片

《详解C#如何提取PDF文档中的图片》提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使用,下面我们就来看看如何使用C#通过代码从PDF文档中提取图片吧... 当 PDF 文件中包含有价值的图片,如艺术画作、设计素材、报告图表等,提取图片可以将这些图像资源进行单独保存,方便后续在不同的项目中使

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

C# WinForms存储过程操作数据库的实例讲解

《C#WinForms存储过程操作数据库的实例讲解》:本文主要介绍C#WinForms存储过程操作数据库的实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、存储过程基础二、C# 调用流程1. 数据库连接配置2. 执行存储过程(增删改)3. 查询数据三、事务处

Java使用Curator进行ZooKeeper操作的详细教程

《Java使用Curator进行ZooKeeper操作的详细教程》ApacheCurator是一个基于ZooKeeper的Java客户端库,它极大地简化了使用ZooKeeper的开发工作,在分布式系统... 目录1、简述2、核心功能2.1 CuratorFramework2.2 Recipes3、示例实践3

Java利用JSONPath操作JSON数据的技术指南

《Java利用JSONPath操作JSON数据的技术指南》JSONPath是一种强大的工具,用于查询和操作JSON数据,类似于SQL的语法,它为处理复杂的JSON数据结构提供了简单且高效... 目录1、简述2、什么是 jsONPath?3、Java 示例3.1 基本查询3.2 过滤查询3.3 递归搜索3.4

Python使用DrissionPage中ChromiumPage进行自动化网页操作

《Python使用DrissionPage中ChromiumPage进行自动化网页操作》DrissionPage作为一款轻量级且功能强大的浏览器自动化库,为开发者提供了丰富的功能支持,本文将使用Dri... 目录前言一、ChromiumPage基础操作1.初始化Drission 和 ChromiumPage

利用Go语言开发文件操作工具轻松处理所有文件

《利用Go语言开发文件操作工具轻松处理所有文件》在后端开发中,文件操作是一个非常常见但又容易出错的场景,本文小编要向大家介绍一个强大的Go语言文件操作工具库,它能帮你轻松处理各种文件操作场景... 目录为什么需要这个工具?核心功能详解1. 文件/目录存javascript在性检查2. 批量创建目录3. 文件

Redis中管道操作pipeline的实现

《Redis中管道操作pipeline的实现》RedisPipeline是一种优化客户端与服务器通信的技术,通过批量发送和接收命令减少网络往返次数,提高命令执行效率,本文就来介绍一下Redis中管道操... 目录什么是pipeline场景一:我要向Redis新增大批量的数据分批处理事务( MULTI/EXE