gpt4 book ai didi

java中输出pdf文件代码分享

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 35 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章java中输出pdf文件代码分享由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

  1. package snake; 
  2.   
  3. import java.io.File; 
  4. import java.io.FileInputStream; 
  5. import java.io.FileOutputStream; 
  6. import java.io.IOException; 
  7. import java.io.InputStream; 
  8.   
  9. import com.lowagie.text.Document; 
  10. import com.lowagie.text.DocumentException; 
  11. import com.lowagie.text.Font; 
  12. import com.lowagie.text.Paragraph; 
  13. import com.lowagie.text.pdf.BaseFont; 
  14. import com.lowagie.text.pdf.PdfWriter; 
  15.   
  16. public class PDFUtil { 
  17.   
  18.     public static void printPDF(String content) throws DocumentException, 
  19.             IOException { 
  20.         Document document = new Document(); 
  21.   
  22.         PdfWriter.getInstance(document, new FileOutputStream( 
  23.                 "D:/demo.pdf")); 
  24.         // BaseFont chinese = BaseFont.createFont("STSong-Light", 
  25.         // "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED); 
  26.         // 使用windows自带的字体 
  27.         BaseFont chinese = BaseFont.createFont("C:/windows/fonts/simsun.ttc,1"
  28.                 BaseFont.IDENTITY_H, BaseFont.EMBEDDED); 
  29.         Font font = new Font(chinese, 14, Font.NORMAL); 
  30.   
  31.         document.addAuthor("WESTDREAM"); 
  32.         document.addTitle("Test iText"); 
  33.         document.addSubject("This is an iText demo"); 
  34.         document.addKeywords("iText keywords"); 
  35.         document.addCreator("Using iText"); 
  36.         document.open(); 
  37.         document.add(new Paragraph(content, font)); 
  38.         document.close(); 
  39.     } 
  40.   
  41.     public static void main(String[] args) throws Exception { 
  42.         File file = new File("C:\\Users\\zan\\Desktop\\demo.txt"); 
  43.         byte[] bytes = new byte[(int) file.length()]; 
  44.         InputStream input = new FileInputStream(file); 
  45.         input.read(bytes, 0, (int)file.length()); 
  46.         printPDF(new String(bytes,"GBK")); 
  47.     } 

最后此篇关于java中输出pdf文件代码分享的文章就讲到这里了,如果你想了解更多关于java中输出pdf文件代码分享的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com