IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 使用poi根据模版生成word文档并转换成PDF文件(可处理doc文件与docx文件版) -> 正文阅读

[移动开发]使用poi根据模版生成word文档并转换成PDF文件(可处理doc文件与docx文件版)

该篇文章是《使用poi根据模版生成word文档并转换成PDF文件》后续解决传入文件为doc文档或docx的处理方法

	/**
	 * 根据模板生成word
	 *
	 * @param path      模板的路径
	 * @param params    需要替换的参数
	 * @param tableList 需要插入的参数
	 * @param fileName  生成word文件的文件名
	 * @param response
	 */
	public void getWord(String path, Map<String, Object> params, List<String[]> tableList, String fileName,
						HttpServletResponse response) throws Exception {
		//模板文件路径
		String modelFilePath = PathConfig.temporaryFilePath+PathConfig.imgPath;
		//临时文件路径
		String temporaryFilePath = PathConfig.temporaryFilePath+PathConfig.temporaryPath;
		String filePath = modelFilePath+path;

		File file = new File(filePath);
		InputStream is = new FileInputStream(file);

		try{
			//解析docx,如果异常就用doc解析
			CustomXWPFDocument docx = new CustomXWPFDocument(is);
			docx(docx,params,tableList,fileName,temporaryFilePath,response);
		}catch (Exception e){
			//解析doc
			is = new FileInputStream(file);
			HWPFDocument doc = new HWPFDocument(is);
			doc(doc,params,tableList,fileName,temporaryFilePath,response);
		}
		this.close(is);
	}

	/**
	 * 解析doc类型文件
	 * @param params
	 * @param tableList
	 * @param fileName
	 * @param temporaryFilePath
	 * @param response
	 * @throws Exception
	 */
	public void doc(HWPFDocument doc, Map<String, Object> params, List<String[]> tableList, String fileName, String temporaryFilePath,
					HttpServletResponse response) throws Exception{
		Range range = doc.getRange();
		for (Map.Entry<String, Object> entry : params.entrySet()) {
			range.replaceText(entry.getKey(), entry.getValue()+"");
		}

		OutputStream os = null;
		fileName = java.net.URLDecoder.decode(fileName, "UTF-8");
		os = new FileOutputStream(temporaryFilePath + fileName);
		doc.write(os);
		try {
			response.setContentType("application/xls");
			response.addHeader("Content-Disposition",
					"attachment;filename=" + new String(fileName.getBytes("UTF-8"), "iso-8859-1"));
			InputStream input = new FileInputStream(temporaryFilePath + fileName);
			byte buffBytes[] = new byte[1024];
			OutputStream as = response.getOutputStream();
			int read = 0;
			while ((read = input.read(buffBytes)) != -1) {
				as.write(buffBytes, 0, read);
			}
			as.flush();
			as.close();
			input.close();
		} catch (IOException ex) {
			ex.printStackTrace();
		}
		this.close(os);

		//删除临时文件
		File f = new File(temporaryFilePath + fileName);
		f.delete();
	}

	/**
	 * 解析docx类型文件
	 * @param params
	 * @param tableList
	 * @param fileName
	 * @param temporaryFilePath
	 * @param response
	 * @throws Exception
	 */
	public void docx(CustomXWPFDocument docx, Map<String, Object> params, List<String[]> tableList, String fileName, String temporaryFilePath,
					 HttpServletResponse response) throws Exception{

		this.replaceInPara(docx, params); // 替换文本里面的变量
		this.replaceInTable(docx, params, tableList); // 替换表格里面的变量
		OutputStream os = null;
		fileName = java.net.URLDecoder.decode(fileName, "UTF-8");
		os = new FileOutputStream(temporaryFilePath + fileName);
		docx.write(os);
		try {
			response.setContentType("application/xls");
			response.addHeader("Content-Disposition",
					"attachment;filename=" + new String(fileName.getBytes("UTF-8"), "iso-8859-1"));
			InputStream input = new FileInputStream(temporaryFilePath + fileName);
			byte buffBytes[] = new byte[1024];
			OutputStream as = response.getOutputStream();
			int read = 0;
			while ((read = input.read(buffBytes)) != -1) {
				as.write(buffBytes, 0, read);
			}
			as.flush();
			as.close();
			input.close();
		} catch (IOException ex) {
			ex.printStackTrace();
		}
		this.close(os);

		//删除临时文件
		File f = new File(temporaryFilePath + fileName);
		f.delete();
	}

参考链接:https://www.cnblogs.com/mr-wuxiansheng/p/6131494.html

主要参考方法:
在这里插入图片描述


//获取模板文件的目录地址
String fileDir = new File(base.getFile(), "../../../../../../doc/").getCanonicalPath();
//获取模板文件
File demoFile=new File(fileDir + "/1.doc");

FileInputStream in = new FileInputStream(demoFile);
//doc文件转换
HWPFDocument hdt = new HWPFDocument(in);
//替换读取到的word模板内容的指定字段
Range range = hdt.getRange();
Map<String, String> map = new HashMap<String, String>();
map.put("$PMBD$", goodsName);
map.put("$PMKSSJ$", dateFormater.format(startTime));
map.put("$MSRHP$", brandNo);
map.put("$PMCJJ$", numberToHanZiUtility.number2CNMontrayUnit(dealPrice));
map.put("$PMYJ$", numberToHanZiUtility.number2CNMontrayUnit(clientCommison));
map.put("$HJ$", numberToHanZiUtility.number2CNMontrayUnit(totalPrice));
map.put("$PMCJJXX$", dealPrice + "");
map.put("$PMYJXX$", clientCommison + "");
map.put("$HJXX$", totalPrice + "");
map.put("$PMJSSJ$", dateFormater.format(endTime));
//替换内容
for (Map.Entry<String,String> entry:map.entrySet()) {
	range.replaceText(entry.getKey(),entry.getValue());
}

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-04-09 18:32:44  更:2022-04-09 18:36:21 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 20:43:30-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码