java实现word转pdf字体问题,javaword转pdf完美解决

  java实现word转pdf字体问题,javaword转pdf完美解决

  

目录

一、前言二、罐子破解1.项目远程仓库配置2.pom文件引入相关依赖3.破解代码三、pdf转消息

 

  

一、前言

学习概述:简单的介绍一下本篇文章要讲解的爪哇知识点

 

  学习目标:读者读完这篇文章之后,你希望他掌握你讲解的哪些重要的知识点

  

二、jar破解

 

  

1.项目远程仓库配置

aspose-pdf这个需要配置单独的仓库地址才能下载,不会配置的可以去官网直接下载冲突引入项目代码中。

 

  存储库存储库idAsposeJavaAPI/id名称aspose Java API/名称urlhttps://repository.aspose.com/repo//url/存储库/存储库

  

2.pom文件引入相关依赖

依赖关系groupId组织。javassist/groupId artifact id javassist/artifact id版本3。20 .0-GA/版本/依赖关系!-https://mvn repository.com/artifact/com . aspose/aspose-pdf-依赖groupId com。aspose/groupId artifactIdaspose-pdf/artifactId版本21.8/版本/依赖性javassist是一个开源的分析、编辑和创建爪哇字节码的类库。

 

  aspose-pdf是一个处理可移植文档格式文件的扩展名(可移植文档格式的缩写)的爪哇岛类库。

  

3.破解代码

导入javassist .*;导入Java。io。*;导入Java。util。ArrayList导入Java。util。枚举;导入Java。util。列表;导入Java。util。罐子。jar条目;导入Java。util。罐子。jarfile导入Java。util。罐子。jar输出流;/* * * * @ date 2022-05-16 * @用户泰山*/public类pdf jar crack { public static void main(String[]args)抛出异常{ String jar path= e : maven _ repository com aspose aspose-pdf 21.8 aspose-pdf-21.8。jar ;裂缝(jarPath);}私有静态void crack(String jarName){ try { class pool。获取默认值().插入类路径(jarName);CtClass CtClass=类池。获取默认值().getCtClass( com。阿斯波斯。pdf。一个文档’);CT method[]声明的方法=CT类。getdeclaredmethods();int num=0;for(int I=0;我声明了方法。长度;I){ if(num==2){ break;

 

   } CtMethod method = declaredMethods[i]; CtClass[] ps = method.getParameterTypes(); if (ps.length == 2 && method.getName().equals("lI") && ps[0].getName().equals("com.aspose.pdf.ADocument") && ps[1].getName().equals("int")) { // 最多只能转换4页 处理 System.out.println(method.getReturnType()); System.out.println(ps[1].getName()); method.setBody("{return false;}"); num = 1; } if (ps.length == 0 && method.getName().equals("lt")) { // 水印处理 method.setBody("{return true;}"); num = 2; } } File file=new File(jarName); ctClass.writeFile(file.getParent()); disposeJar(jarName, file.getParent()+"/com/aspose/pdf/ADocument.class"); } catch(NotFoundException e){ e.printStackTrace(); } catch(CannotCompileException e){ e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } } private static void disposeJar(String jarName, String replaceFile) { List<String> deletes = new ArrayList<>(); deletes.add("META-INF/37E3C32D.SF"); deletes.add("META-INF/37E3C32D.RSA"); File oriFile = new File(jarName); if (!oriFile.exists()) { System.out.println("######Not Find File:" + jarName); return; } //将文件名命名成备份文件 String bakJarName = jarName.substring(0, jarName.length() - 3) + "cracked.jar"; // File bakFile=new File(bakJarName); try { //创建文件(根据备份文件并删除部分) JarFile jarFile = new JarFile(jarName); JarOutputStream jos = new JarOutputStream(new FileOutputStream(bakJarName)); Enumeration entries = jarFile.entries(); while (entries.hasMoreElements()) { JarEntry entry = (JarEntry) entries.nextElement(); if (!deletes.contains(entry.getName())) { if(entry.getName().equals("com/aspose/pdf/ADocument.class")){ System.out.println("Replace:-------" +entry.getName()); JarEntry jarEntry = new JarEntry(entry.getName()); jos.putNextEntry(jarEntry); FileInputStream fin = new FileInputStream(replaceFile); byte[] bytes = readStream(fin); jos.write(bytes, 0, bytes.length); }else { jos.putNextEntry(entry); byte[] bytes = readStream(jarFile.getInputStream(entry)); jos.write(bytes, 0, bytes.length); } } else { System.out.println("Delete:-------" + entry.getName()); } } jos.flush(); jos.close(); jarFile.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } } private static byte[] readStream(InputStream inStream) throws Exception { ByteArrayOutputStream outSteam = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int len = -1; while ((len = inStream.read(buffer)) != -1) { outSteam.write(buffer, 0, len); } outSteam.close(); inStream.close(); return outSteam.toByteArray(); }修改你本机的aspose-pdf-21.8.jar路径,然后运行主方法,破解成功后,会再同级文件夹下生成一个aspose-pdf-21.8.cracked.jar包,用这个包替换原来的aspose-pdf-21.8.jar包即可。

  控制台输出

  

 

  

 

  

 

  

三、pdf转word

代码实现

 

  

 import com.aspose.pdf.Document;import com.aspose.pdf.SaveFormat; import java.io.*; public class PDFHelper3 { public static void main(String[] args) throws IOException { pdf2doc("C:\Users\liuya\Desktop\pdf\中信重工铸锻公司数字化工厂技术要求.pdf"); } //pdf转doc public static void pdf2doc(String pdfPath) { long old = System.currentTimeMillis(); try { //新建一个word文档 String wordPath=pdfPath.substring(0,pdfPath.lastIndexOf("."))+".docx"; FileOutputStream os = new FileOutputStream(wordPath); //doc是将要被转化的word文档 Document doc = new Document(pdfPath); //全面支持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF, EPUB, XPS, SWF 相互转换 doc.save(os, SaveFormat.DocX); os.close(); //转化用时 long now = System.currentTimeMillis(); System.out.println("Pdf 转 Word 共耗时:" + ((now - old) / 1000.0) + "秒"); } catch (Exception e) { System.out.println("Pdf 转 Word 失败..."); e.printStackTrace(); } } }

修改自己的pdf文件路径,运行主方法即可,完成无水印,无页数限制转换word文件

 

  控制台输出

  

 

  到此这篇关于Java实现PDF转Word的示例代码(无水印无页数限制)的文章就介绍到这了,更多相关Java PDF转Word内容请搜索盛行IT以前的文章或继续浏览下面的相关文章希望大家以后多多支持盛行IT!

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: