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

为什么收不到自己网站网站开发需要2个月吗

为什么收不到自己网站,网站开发需要2个月吗,网页类型有哪些,新公司网站设计提示#xff1a;文章写完后#xff0c;目录可以自动生成#xff0c;如何生成可参考右边的帮助文档 文章目录 前言一、功能说明二、使用步骤1.controller2.工具类 DocumentUtil 导出样式 前言 提示#xff1a;这里可以添加本文要记录的大概内容#xff1a; 例如#xff… 提示文章写完后目录可以自动生成如何生成可参考右边的帮助文档 文章目录 前言一、功能说明二、使用步骤1.controller2.工具类 DocumentUtil 导出样式 前言 提示这里可以添加本文要记录的大概内容 例如随着人工智能的不断发展机器学习这门技术也越来越重要很多人都开启了学习机器学习本文就介绍了机器学习的基础内容。 提示以下是本篇文章正文内容下面案例可供参考 一、功能说明 将要导出的文件已动态方式进行下载二、使用步骤 1.controller 代码如下示例 ApiOperation(导出维权word模板)GetMapping(/export/{id})public ResponseEntitybyte[] exportWord(PathVariable(id) Long id) throws IOException {// 获取 SupervisionDocument 对象SupervisionDocument supervisionDocument service.getById(id);// 创建并填充数据模型HashMapString, Object dataMap new HashMap();//将base64的内容进行解码String s new String(Base64.getDecoder().decode(supervisionDocument.getSupervisionOrderText()));dataMap.put(content, s);//编号判断如果获取为空则默认空格dataMap.put(number, supervisionDocument.getSupervisionOrderNumber());//整改时限dataMap.put(time, new SimpleDateFormat(yyyy年MM月dd日).format(supervisionDocument.getRectificationDeadline()));//录入时间dataMap.put(entryTime, new SimpleDateFormat(yyyy年MM月dd日).format(supervisionDocument.getCreatedAt()));//录入单位dataMap.put(entryUnit, supervisionDocument.getEntryUnit());//被堵办单位dataMap.put(supervisedUnit, supervisionDocument.getSupervisedUnit());//获取附件dataMap.put(attachment, splitUrl(supervisionDocument.getAttachments()));if (supervisionDocument.getDocumentType().equals(1)) {// 生成文档的字节流ByteArrayOutputStream outputStream DocumentUtil.generateDocAsStream(word/提示函.docx,dataMap);// 设置文件下载的文件名String fileName 提示函_ id .docx;// 设置响应头确保文件下载HttpHeaders headers new HttpHeaders();headers.setContentType(MediaType.APPLICATION_OCTET_STREAM);headers.setContentDispositionFormData(attachment, new String(fileName.getBytes(UTF-8), ISO-8859-1));// 返回文件流内容作为响应体return new ResponseEntity(outputStream.toByteArray(), headers, HttpStatus.OK);}2.工具类 DocumentUtil 代码如下示例 package com.ruoyi.common.core.utils;import com.deepoove.poi.XWPFTemplate; import com.openhtmltopdf.pdfboxout.PdfRendererBuilder; import org.slf4j.Logger; import org.slf4j.LoggerFactory;import java.io.ByteArrayOutputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import java.nio.file.Paths; import java.util.Map;/*** 文档处理工具类。* p* 提供生成Word和PDF文档的方法。* /p* author Administrator*/ public class DocumentUtil {private static final Logger logger LoggerFactory.getLogger(DocumentUtil.class);/*** 生成Word文档** param templatePath 模板文件路径* param outputPath 输出文件路径* param data 数据模型* throws IOException 如果文档生成失败*/public static void generateDoc(String templatePath, String outputPath, MapString, Object data) throws IOException {logger.info(开始生成Word文档模板路径{}输出路径{}, templatePath, outputPath);if (Files.exists(Paths.get(outputPath))) {throw new IOException(文件已存在 outputPath);}XWPFTemplate template XWPFTemplate.compile(templatePath);try {template.render(data);try (FileOutputStream out new FileOutputStream(outputPath)) {template.write(out);}} catch (Exception e) {logger.error(生成Word文档时发生错误, e);throw new IOException(生成Word文档时发生错误 e.getMessage(), e);} finally {template.close();}logger.info(Word文档生成成功输出路径{}, outputPath);}/*** 生成Word文档并返回文件流** param templatePath 模板文件路径* param data 数据模型* return 文件流* throws IOException 如果文档生成失败*/public static ByteArrayOutputStream generateDocAsStream(String templatePath, MapString, Object data) throws IOException {// 从 classpath 中读取模板文件流try (InputStream templateStream DocumentUtil.class.getClassLoader().getResourceAsStream(templatePath)) {if (templateStream null) {throw new IOException(模板文件未找到 templatePath);}// 创建 XWPFTemplate 实例并渲染数据XWPFTemplate template XWPFTemplate.compile(templateStream);ByteArrayOutputStream outputStream new ByteArrayOutputStream();try {template.render(data); // 将数据渲染到模板template.write(outputStream); // 将模板内容写入输出流} catch (Exception e) {logger.error(生成Word文档时发生错误, e);throw new IOException(生成Word文档时发生错误 e.getMessage(), e);} finally {template.close();}logger.info(Word文档生成成功);return outputStream;}}/*** 生成PDF文件** param htmlContent HTML内容* param outputPath 输出文件路径* throws IOException 如果PDF生成失败*/public static void generatePdf(String htmlContent, String outputPath) throws IOException {logger.info(开始生成PDF文件输出路径{}, outputPath);if (Files.exists(Paths.get(outputPath))) {throw new IOException(文件已存在 outputPath);}try (ByteArrayOutputStream os new ByteArrayOutputStream()) {PdfRendererBuilder builder new PdfRendererBuilder();builder.useFastMode();builder.withHtmlContent(htmlContent, null);builder.toStream(os);builder.run();try (FileOutputStream fos new FileOutputStream(outputPath)) {fos.write(os.toByteArray());}} catch (Exception e) {logger.error(生成PDF文件时发生错误, e);throw new IOException(生成PDF文件时发生错误 e.getMessage(), e);}logger.info(PDF文件生成成功输出路径{}, outputPath);}/*** 生成PDF文件并返回文件流** param htmlContent HTML内容* return 文件流* throws IOException 如果PDF生成失败*//*** 生成PDF文件并返回文件流** param htmlContent HTML内容* return 文件流* throws IOException 如果PDF生成失败*/public static ByteArrayOutputStream generatePdfAsStream(String htmlContent) throws IOException {logger.info(开始生成PDF文件);ByteArrayOutputStream outputStream new ByteArrayOutputStream();try {PdfRendererBuilder builder new PdfRendererBuilder();builder.useFastMode();// 设置中文字体路径String fontPath DocumentUtil.class.getClassLoader().getResource(SimSun.ttf).toExternalForm();// 嵌入中文字体builder.useFont(() - DocumentUtil.class.getClassLoader().getResourceAsStream(SimSun.ttf), SimSun);// 在HTML中使用该字体htmlContent htmlContent.replace(head, head\nstylefont-face { font-family: SimSun; src: url( fontPath ); }/style);htmlContent htmlContent.replace(nbsp;, #160;);htmlContent htmlContent.replace(ldquo;, “);htmlContent htmlContent.replace(rdquo;, ”);// 去除html body 里的字体样式 只去除body里的htmlContent htmlContent.replace(body, body style\font-family: SimSun, Arial, sans-serif;\);htmlContent cleanHtmlBodyFonts(htmlContent);builder.withHtmlContent(htmlContent, null);builder.toStream(outputStream);builder.run();} catch (Exception e) {logger.error(生成PDF文件时发生错误, e);throw new IOException(生成PDF文件时发生错误 e.getMessage(), e);}logger.info(PDF文件生成成功);return outputStream;}/*** 生成包含复杂内容的PDF文件** param outputPath 输出文件路径* throws IOException 如果PDF生成失败*/public static void generateComplexPdf(String outputPath) throws IOException {String htmlContent !DOCTYPE html\n html lang\en\\n head\n meta charset\UTF-8\ /\n style\n body {\n font-family: SimSun, Arial, sans-serif;\n } h1 {\n color: #333;\n }\n p {\n font-size: 14px;\n line-height: 1.5;\n }\n table {\n width: 100%;\n border-collapse: collapse;\n }\n table, th, td {\n border: 1px solid black;\n }\n th, td {\n padding: 8px;\n text-align: left;\n }\n img {\n width: 100px;\n height: auto;\n }\n /style\n titleComplex PDF Example/title\n /head\n body\n h1PDF生成示例/h1\n p这是一个包含不同内容的PDF示例。/p\n h2表格/h\n table\n tr\n th名称/th\n th年龄/th\n th城市/th\n /tr\n tr\n td张三/td\n td30/td\n td北京/td\n /tr\n tr\n td李四/td\n td25/td\n td上海/td\n /tr\n /table\n h2图像/h2\n img src\https://via.placeholder.com/100\ alt\示例图像\ /\n /body\n /html;generatePdf(htmlContent, outputPath);}/*** 生成包含复杂内容的PDF文件并返回文件流** return 文件流* throws IOException 如果PDF生成失败*/public static ByteArrayOutputStream generateComplexPdfAsStream() throws IOException {String htmlContent !DOCTYPE html\n html lang\en\\n head\n meta charset\UTF-8\ /\n style\n body {\n font-family: SimSun, Arial, sans-serif;\n } h1 {\n color: #333;\n }\n p {\n font-size: 14px;\n line-height: 1.5;\n }\n table {\n width: 100%;\n border-collapse: collapse;\n }\n table, th, td {\n border: 1px solid black;\n }\n th, td {\n padding: 8px;\n text-align: left;\n }\n img {\n width: 100px;\n height: auto;\n }\n /style\n titleComplex PDF Example/title\n /head\n body\n h1PDF生成示例/h1\n p这是一个包含不同内容的PDF示例。/p\n h2表格/h2\n table\n tr\n th名称/th\n th年龄/th\n th城市/th\n /tr\n tr\n td张三/td\n td30/td\n td北京/td\n /tr\n tr\n td李四/td\n td25/td\n td上海/td\n /tr\n /table\n h2图像/h2\n img src\https://via.placeholder.com/100\ alt\示例图像\ /\n /body\n /html;return generatePdfAsStream(htmlContent);}public static String cleanHtmlBodyFonts(String htmlContent) {// 清除内联样式中的字体相关属性String cleaned htmlContent.replaceAll(font-family:\\s*[^;\];?, // 清除 font-family).replaceAll(style\\\s*\, // 清除空的style属性).replaceAll(body[^]*, body style\font-family: SimSun, Arial, sans-serif;\ // 替换body标签);// 清除仿宋_GB2312等特定字体类cleaned cleaned.replaceAll(font-family:\\s*[仿宋楷体]((_GB2312)|(_GBK))?[^;\]*;?, );return cleaned;} } 该处使用的url网络请求的数据。 导出样式
http://www.hkea.cn/news/14585878/

相关文章:

  • 网站建设制作怎么弄网站建设公司3lue
  • 网站建设 模板网站wordpress商城自动发货
  • 男女做啊免费视频网站电信备案新增网站
  • 重庆网站建设沛宣网络网页已改版
  • 阳泉网站设计wordpress文章页面模板下载
  • 有没有专门做二手电脑的网站常州模板网站建设信息
  • 小视频网站源码网络营销都有哪些方法
  • 公园网站建设方案 ppt注册 网站开发 公司
  • 电商网站建设试题建设工程公司是干什么的
  • 企业做网站公司怎么样单页面 网站怎么做的
  • 淘宝做网站价格电子信息工程是互联网专业吗
  • 郑州建设网站定制新塘做网站
  • 河南省路桥建设集团网站比较好的装修公司
  • 举报网站建设运行情况济南网站搭建公司
  • 广东省省建设厅网站上海物流网站建设
  • 网站后台管理系统模板辽宁省工程招投标信息网
  • 中国自适应网站建设外包网站建设哪家好
  • 简约网站网站查询是否安全
  • 爱玖货源站前端开发工程师工资一般是多少
  • 怎么用wordpress建外贸网站东莞网站制作智能 乐云践新
  • 做网站哪里最好白度指数
  • 哈尔滨公司网站建设多少钱网站怎样做平面设计图
  • 做泰迪狗网站的意义湘潭做网站品牌磐石网络
  • 哈尔滨seo关键词百度关键词搜索引擎排名优化
  • 网站信息维护西安有什么好玩的东西
  • 包头有没有专业做淘宝网站的电子网址怎么创建
  • 制作竞拍网站永灿网站建设公司
  • 莱州建设局网站wordpress做外贸
  • 网站建设费用皆选网络管理咨询公司技术服务
  • asp.net 网站修改发布房产网站搭建