您的位置:首页 > 健康 > 美食 > b2b商务平台怎么推广_深圳品牌模板网站建设_网站数据_小红书信息流广告投放

b2b商务平台怎么推广_深圳品牌模板网站建设_网站数据_小红书信息流广告投放

2024/12/28 7:29:32 来源:https://blog.csdn.net/qq_35757427/article/details/143499756  浏览:    关键词:b2b商务平台怎么推广_深圳品牌模板网站建设_网站数据_小红书信息流广告投放
b2b商务平台怎么推广_深圳品牌模板网站建设_网站数据_小红书信息流广告投放

后端代码:

 @GetMapping("/getContentAsPdf/{guid}")public void getContentAsPdf(@PathVariable String guid, HttpServletResponse response) {String contentUrl = ""; // 假设这个方法返回文档的URLList<BsResource> byGuid = bsResourceService.findByGuid(guid);if (!CollectionUtils.isEmpty(byGuid)) {contentUrl = byGuid.get(0).getAbsolutePath();}// 设置响应的内容类型为PDFresponse.setContentType("application/pdf");try (InputStream is = new URL(contentUrl).openStream();ByteArrayOutputStream baos = new ByteArrayOutputStream()) {if (contentUrl.endsWith(".doc")) {// 处理.doc文件HWPFDocument hwpfDocument = new HWPFDocument(is);Range range = hwpfDocument.getRange();StringBuilder textBuilder = new StringBuilder();for (int i = 0; i < range.numParagraphs(); i++) {textBuilder.append(range.getParagraph(i).text()).append("\n");}// 将文本内容转换为PDFconvertTextToPdf(textBuilder.toString(), baos);} else if (contentUrl.endsWith(".docx")) {// 处理.docx文件try (XWPFDocument docxDocument = new XWPFDocument(is)) {PdfWriter writer = new PdfWriter(baos);PdfDocument pdf = new PdfDocument(writer);Document document = new Document(pdf);for (XWPFParagraph paragraph : docxDocument.getParagraphs()) {document.add(new Paragraph(paragraph.getText()));}document.close();}}// 将PDF写入响应流try (OutputStream os = response.getOutputStream()) {baos.writeTo(os);}} catch (MalformedURLException ex) {throw new RuntimeException(ex);} catch (IOException ex) {throw new RuntimeException(ex);}}private void convertTextToPdf(String text, ByteArrayOutputStream baos) throws IOException {PdfWriter writer = new PdfWriter(baos);PdfDocument pdf = new PdfDocument(writer);Document document = new Document(pdf);document.add(new Paragraph(text));document.close();}

前端VUE调用(可以用iframe嵌套):

    async handleTitleClick(row) {try {// 显示PDFthis.pdfUrl = `${baseURL}/bs/doc/getContentAsPdf/${row.guid}`;this.dialogVisible = true;} catch (error) {console.error('获取PDF文件失败:', error);this.$message.error('获取PDF文件失败');}},

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com