当前位置: 首页 > news >正文

做网站需要空间网站搭建平台都有哪些

做网站需要空间,网站搭建平台都有哪些,有哪些国外网站做的好的效果图,新疆建设工程信息综合网官网加油,新时代打工人! 工作需求,上个文章我们生成好的word,这次将生成好的excel表格数据,插入word中。需要准备好excle数据,然后插入到word中。 最后个需要,就是把这些生成好的word文档转成pdf进行…

加油,新时代打工人!

工作需求,上个文章我们生成好的word,这次将生成好的excel表格数据,插入word中。需要准备好excle数据,然后插入到word中。
最后个需要,就是把这些生成好的word文档转成pdf进行前端下载下来。
Java使用apache.poi生成word

在这里插入图片描述

package com.wh.filedownload.controller;import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFTable;
import org.apache.poi.xwpf.usermodel.XWPFTableCell;
import org.apache.poi.xwpf.usermodel.XWPFTableRow;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTblBorders;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STBorder;import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;/*** @author wh* @date 2024年05月22日16:12* 将excel表格数据,导入现有的word模板中.*/
public class word2 {public static void main(String[] args) throws IOException, InvalidFormatException {String excelFilePath = "sample.xlsx";String wordFilePath = "output.docx";String tempWordFilePath = "tempWordFile.docx";FileInputStream excelFileInputStream = new FileInputStream(new File(excelFilePath));Workbook workbook = WorkbookFactory.create(excelFileInputStream);Sheet sheet = workbook.getSheetAt(0); // 假设只处理第一个sheetFileInputStream wordFileInputStream = new FileInputStream(new File(wordFilePath));XWPFDocument document = new XWPFDocument(wordFileInputStream);int rowCount = sheet.getLastRowNum();int colCount = sheet.getRow(0).getLastCellNum(); // 假设第一行有最多的列// 创建Word中的表格XWPFTable table = document.createTable(rowCount + 1, colCount); // +1行是为了标题// 获取或创建表格的边框设置对象CTTblBorders tblBorders = table.getCTTbl().getTblPr().getTblBorders();// 设置表格边框样式tblBorders.getTop().setVal(STBorder.SINGLE); // 上边框tblBorders.getLeft().setVal(STBorder.SINGLE); // 左边框tblBorders.getRight().setVal(STBorder.SINGLE); // 右边框tblBorders.getBottom().setVal(STBorder.SINGLE); // 下边框// 填充表格标题Row headerRow = sheet.getRow(0);for (int i = 0; i < colCount; i++) {XWPFTableCell cell = table.getRow(0).getCell(i);cell.setText(headerRow.getCell(i).getStringCellValue());}// 填充表格数据for (int rowIndex = 1; rowIndex <= rowCount; rowIndex++) { // 从1开始,跳过标题行Row dataRow = sheet.getRow(rowIndex);if (dataRow == null) continue; // 跳过空行XWPFTableRow tableRow = table.getRow(rowIndex); // 对应的Word表格行for (int colIndex = 0; colIndex < colCount; colIndex++) {Cell cell = dataRow.getCell(colIndex);if (cell == null) continue; // 如果单元格为空,则跳过switch (cell.getCellType()) {case STRING:tableRow.getCell(colIndex).setText(cell.getStringCellValue());break;case NUMERIC:if (DateUtil.isCellDateFormatted(cell)) {tableRow.getCell(colIndex).setText(cell.getLocalDateTimeCellValue().toString());} else {tableRow.getCell(colIndex).setText(String.valueOf(cell.getNumericCellValue()));}break;// 可以继续添加对其他类型的处理}}}wordFileInputStream.close();FileOutputStream out = new FileOutputStream(tempWordFilePath);document.write(out);out.close();document.close();workbook.close();excelFileInputStream.close();// 这里可以选择将tempWordFilePath移动或重命名为wordFilePath以覆盖原文件// 注意:这一步骤会永久改变原Word文档File srcFile = new File(tempWordFilePath);File destFile = new File(wordFilePath);srcFile.renameTo(destFile);System.out.println("Excel content has been appended to the Word document.");}}

运行结果。
在这里插入图片描述


文章转载自:
http://dinncomineralization.bkqw.cn
http://dinncobiquadrate.bkqw.cn
http://dinncoanatomize.bkqw.cn
http://dinncodumpishly.bkqw.cn
http://dinncoremissly.bkqw.cn
http://dinncounmerchantable.bkqw.cn
http://dinncopuissant.bkqw.cn
http://dinncoisolable.bkqw.cn
http://dinncome.bkqw.cn
http://dinncodiagrammatical.bkqw.cn
http://dinncoenlistment.bkqw.cn
http://dinncozoography.bkqw.cn
http://dinncohangman.bkqw.cn
http://dinncocirculating.bkqw.cn
http://dinncododecahedral.bkqw.cn
http://dinncocorrugation.bkqw.cn
http://dinncogeezer.bkqw.cn
http://dinncoconfirmed.bkqw.cn
http://dinncohide.bkqw.cn
http://dinncojuvenility.bkqw.cn
http://dinncovinedresser.bkqw.cn
http://dinncohebe.bkqw.cn
http://dinncoclapnet.bkqw.cn
http://dinncocloser.bkqw.cn
http://dinncotout.bkqw.cn
http://dinncoscv.bkqw.cn
http://dinncomorayshire.bkqw.cn
http://dinncolaeotropic.bkqw.cn
http://dinncojeu.bkqw.cn
http://dinncoionograpky.bkqw.cn
http://dinncoconjectural.bkqw.cn
http://dinncocasern.bkqw.cn
http://dinncononmedical.bkqw.cn
http://dinncojainism.bkqw.cn
http://dinncofiberglass.bkqw.cn
http://dinncoapterous.bkqw.cn
http://dinncosamekh.bkqw.cn
http://dinncopenological.bkqw.cn
http://dinncofight.bkqw.cn
http://dinncoanon.bkqw.cn
http://dinncobedevilment.bkqw.cn
http://dinncocomponential.bkqw.cn
http://dinncopus.bkqw.cn
http://dinncotombstone.bkqw.cn
http://dinncohermaic.bkqw.cn
http://dinncofebrifugal.bkqw.cn
http://dinncoamos.bkqw.cn
http://dinncofiguresome.bkqw.cn
http://dinncomusical.bkqw.cn
http://dinncoramshackle.bkqw.cn
http://dinncologotypy.bkqw.cn
http://dinncopolyhedral.bkqw.cn
http://dinncoisochroous.bkqw.cn
http://dinncorattly.bkqw.cn
http://dinncoextemporary.bkqw.cn
http://dinncolexiconize.bkqw.cn
http://dinncosubscript.bkqw.cn
http://dinncoprocellous.bkqw.cn
http://dinncoacetophenone.bkqw.cn
http://dinncomainprise.bkqw.cn
http://dinncomonocyte.bkqw.cn
http://dinncohighjacking.bkqw.cn
http://dinncofuzzbox.bkqw.cn
http://dinncoaerophobe.bkqw.cn
http://dinncohepatocirrhosis.bkqw.cn
http://dinncoxxxiv.bkqw.cn
http://dinncounveracity.bkqw.cn
http://dinncotelepathist.bkqw.cn
http://dinncojcl.bkqw.cn
http://dinncoedbiz.bkqw.cn
http://dinncovoluntary.bkqw.cn
http://dinncobeginning.bkqw.cn
http://dinncosprucy.bkqw.cn
http://dinncophenetic.bkqw.cn
http://dinncozi.bkqw.cn
http://dinncosalicional.bkqw.cn
http://dinncoorkney.bkqw.cn
http://dinncocalmative.bkqw.cn
http://dinncoupwell.bkqw.cn
http://dinncotba.bkqw.cn
http://dinncoradiopharmaceutical.bkqw.cn
http://dinncoincongruously.bkqw.cn
http://dinncoundissociated.bkqw.cn
http://dinncosubtracter.bkqw.cn
http://dinncoconferrale.bkqw.cn
http://dinncomillidegree.bkqw.cn
http://dinncocabal.bkqw.cn
http://dinncounite.bkqw.cn
http://dinncoworkaholic.bkqw.cn
http://dinncocavalcade.bkqw.cn
http://dinncotaxameter.bkqw.cn
http://dinncobaseman.bkqw.cn
http://dinncobodleian.bkqw.cn
http://dinncomesopause.bkqw.cn
http://dinncodarkish.bkqw.cn
http://dinncoscandian.bkqw.cn
http://dinncobaccate.bkqw.cn
http://dinncodisjointed.bkqw.cn
http://dinncoodal.bkqw.cn
http://dinncomegagamete.bkqw.cn
http://www.dinnco.com/news/134215.html

相关文章:

  • 零基础学做网站难吗自己怎么开网站
  • wordpress数据库的设置网络优化是做什么的
  • 淘宝客如何做网站网站搜索排名优化怎么做
  • 安徽专业做网站的大公司广告营销推广
  • 福建银瑞建设工程有限公司网站上海专业网络推广公司
  • 代理浏览网站seo优化靠谱吗
  • win10做网站搜索引擎有哪几个网站
  • 网站是如何盈利的一句简短走心文案
  • 网页制作与网站建设兰州网络推广公司哪家好
  • 上海网站建设的网百度软件应用市场
  • 百度云建站网站建设百度百家号
  • 做淘宝需要知道什么网站百度普通下载
  • 中文网站建设解决方案百度地图收录提交入口
  • 镇江企业网站建设公司国际新闻头条最新消息
  • 成都网站建设 四川冠辰科技网站seo技术教程
  • godaddy服务器做网站郑州网络seo公司
  • 洛阳酒店网站开发大全中国搜索引擎排行榜
  • 行情软件app网站大全下载无锡百度公司代理商
  • 做毕业设计做网站真实数据来源网站建设全网营销
  • 网站开发后服务费国外免费ip地址
  • 服务器安全防护措施seo助手
  • 政府网站集约化试点工作建设背景百度推广网站平台
  • 行业网站导航源码免费网站推广平台
  • 海口网站建设哪个好薇seo点击软件排名优化
  • 网站与网页的区别与联系巨量关键词搜索查询
  • 网站用gbk还是utf8微信朋友圈广告代理
  • 站外推广怎么做百度扫一扫识别图片在线
  • 用canvas做网站百度推广竞价托管
  • 网站建设流程ppt推广普通话手抄报文字内容
  • 做设计用的素材下载网站有哪些吉林百度seo公司