JAVA中对excel文件转换成PDF文件


	public static boolean getLicense() {
		boolean result = false;
		try {
			InputStream is = FileCostTotalExcel.class.getClassLoader().getResourceAsStream("license.xml");
			License aposeLic = new License();
			aposeLic.setLicense(is);
			result = true;
		} catch (Exception e) {
		}
		return result;
	}
 /**
     * 支持DOC, DOCX, OOXML, RTF, HTML, OpenDocument, PDF, EPUB, XPS, SWF等相互转换<br>
     * 
     * @param args
     */
    public static void excToPdf(String ecxcelPath,String pdfPath,int num) {
        // 验证License
        if (!getLicense()) {
            return;
        }

        try {
            long old = System.currentTimeMillis();
            Workbook wb = new Workbook(ecxcelPath);// 原始excel路径
            File pdfFile = new File(pdfPath);// 输出路径
            
            PdfSaveOptions pdfSaveOptions = new PdfSaveOptions();
            if(num>13){
            	pdfSaveOptions.setOnePagePerSheet(true);//把内容放在一张PDF 页面上;
            }else{
            	pdfSaveOptions.setOnePagePerSheet(false);//不需要把内容放在一张PDF 页面上;
            }
            FileOutputStream fileOS = new FileOutputStream(pdfFile);
            //wb.save(fileOS, SaveFormat.PDF);
            wb.save(fileOS, pdfSaveOptions);
           
            long now = System.currentTimeMillis();
            System.out.println("共耗时:" + ((now - old) / 1000.0) + "秒");
            fileOS.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

其中ecxcelPath为excel文件的完整路径(包括后缀),相应生成的pdf文件路径pdfPath也是完成路径(包括后缀),如果要相应的解决其他文件转换,则对应的修改文件路径即可。num为本人要判断excel文件有多少行,超过13格行另外生成新的一页pdf。jar包引用为aspose-cells-8.5.2.jar。

评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值