日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

html转pdf后 框会消失,html或其它文件转pdf弹出打开保存框

發(fā)布時(shí)間:2023/12/3 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 html转pdf后 框会消失,html或其它文件转pdf弹出打开保存框 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

第一步:下載wkhtmktopdf軟件,安裝在指定的目錄,如:C:\htmlToPdf\wkhtmltopdf,

第二步:把安裝好的wkhtmltopdf文件目錄加到環(huán)境變量Path路徑中,

public void convertFile(){

HttpURLConnection con = null;

URL url = null;

Process p = null;

String cmd = "html2pdf";//安裝文件目錄名,此名是在linux下的,其它可以自己加目錄

try {

String sessionid = Struts2Util.getRequest().getSession().getId();

System.out.println("sessionid==" + sessionid);

url = new URL(

" http://10.168.2.181:8080/scm/quote_extra!print.action");

con = (HttpURLConnection) url.openConnection();

con.setRequestProperty("Cookie", "JSESSIONID=" + sessionid);

con.connect();

int size = 0;

byte[] buf = new byte[1024];

BufferedInputStream bis = new BufferedInputStream(con

.getInputStream());

StringBuffer strb = new StringBuffer();

while ((size = bis.read(buf)) != -1) {

strb.append(new String(buf, 0, size));

}

FileWriter writer = null;

File file = new File("/tmp/quote_print.html");

writer = new FileWriter(file);

writer.write(strb.toString());

writer.flush();

writer.close();

ProcessBuilder pb = new ProcessBuilder(cmd, "/tmp/quote_print.html",

"/tmp/quote_print.pdf");//使用插件進(jìn)行轉(zhuǎn)換

pb.redirectErrorStream(true);

p = pb.start();

InputStreamReader ir = new InputStreamReader(p.getInputStream());

LineNumberReader input = new LineNumberReader(ir);

String line;

while ((line = input.readLine()) != null) {

System.out.println(line);

}

// 提示下載

HttpServletResponse response = Struts2Util.getResponse();

response.setContentType("APPLICATION/DOWNLOAD");

response.setHeader("Content-Disposition", "attachment; filename="

+ "PrintQuote" + (new Random()).nextInt() + ".pdf");// PackingSlip是文件名

java.io.OutputStream os = response.getOutputStream();

java.io.FileInputStream fis = new java.io.FileInputStream(

"/tmp/quote_print.pdf");

byte[] b = new byte[1024];

int i = 0;

while ((i = fis.read(b)) > 0) {

os.write(b, 0, i);

}

fis.close();

os.flush();

response.flushBuffer();

os.close();

bis.close();

con.disconnect();

} catch (Exception e) {

e.printStackTrace();

throw new RuntimeException(e);

}finally{

if(p!=null){

p.destroy();

}

}

}

總結(jié)

以上是生活随笔為你收集整理的html转pdf后 框会消失,html或其它文件转pdf弹出打开保存框的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。