wxHtml2pdf

来源:互联网 发布:部落冲突蛮王升级数据 编辑:程序博客网 时间:2024/05/01 01:02

java 生成pdf 或者image 使用 wxhtmltopdf

package com.adolph;/** * Created by w on 2017/4/21. */public class TestWKHtmlToPdfUtil {    public String getCommand(String sourceFilePath,String targetFilePath){        String system = System.getProperty("os.name");        System.out.println(system);        if (system.contains("Windows")) {            return "D:\\wxhtml2pdf\\wkhtmltopdf.exe"+" "+sourceFilePath+" "+targetFilePath;        }        return "";    }    public String getCommandjpg(String sourceFilePath,String targetFilePath){        String system = System.getProperty("os.name");        System.out.println(system);        if (system.contains("Windows")) {            return "D:\\wxhtml2pdf\\wkhtmltoimage.exe"+" "+sourceFilePath+" "+targetFilePath;        }else {            return "";        }    }    //windows下把程序放到其他盘,否则爆错 没有足够权限写入不成功或程序执行不了    public static void main(String[] args) throws Exception{        TestWKHtmlToPdfUtil util = new TestWKHtmlToPdfUtil();        String command = util.getCommand("http://www.taobao.com", "D:\\wxhtml2pdf\\tb.pdf");        //String command = util.getCommandjpg("http://www.taobao.com", "D:\\wxhtml2pdf\\tb.jpg");        Process process = Runtime.getRuntime().exec(command);        process.waitFor();        System.out.println("success");    }}



0 0
原创粉丝点击