用Java实现office(word,excel)转换为PDF文件

注释:批量excel转成pdf一定能行。如有疑问。请联系qq1063797720

注意点

jacob.jar和jacob-1.18-x64.dll,jacob-1.18-x86.dll版本不能是最新的否则有问题。1.19不行报错

jacob.jar下载地址

https://mvnrepository.com/artifact/com.hynnet/jacob/1.18

批量转成pdf

public stastic void main(String[] args) throws Exception{

String path = 'D:/ss";

File file = new File(path);

if(file.exists()){

  File[] files = file.listFiles();

  //循环生成pdf

   for(File file2:files){
        String fileName = file2.getName();

         //方法名

        excel2Pdf("D:\\ss\\"+fileName,"D:\\scpdf\\"+fileName.replace(".xls","")+".pdf");

    }

}else{

//文件不存在

System.out.println("文件不存在");

}

参考了

https://blog.csdn.net/qq_29281307/article/details/78792784

你可能感兴趣的:(用Java实现office(word,excel)转换为PDF文件)