核心代碼如下
package com.hmkcode;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.html2pdf.HtmlConverter;
public class App {
public static final String HTML = "<h1>Hello</h1>"
+ "<p>This was created using iText</p>"
+ "<a href='hmkcode.com'>hmkcode.com</a>";
public static void main( String[] args ) throws FileNotFoundException, IOException
{
HtmlConverter.convertToPdf(HTML, new FileOutputStream("string-to-pdf.pdf"));
System.out.println( "PDF Created!" );
}
}
⑵ 用Java 讀取 PDF 遇到中文標簽該怎麼處理
直接使用系統字體讀取或創建帶中文的pdf,需要注意jar的版本。
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.8</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-asian</artifactId>
<version>5.2.0</version>
</dependency>
<dependency>
<groupId>com.itextpdf.tool</groupId>
<artifactId>xmlworker</artifactId>
<version>5.5.6</version>
</dependency>123456789101112131415
代碼如下,覆寫XMLWorkerFontProvider$getFont即可讀取中文
public void createPdf(String src, String dest) throws IOException, DocumentException {
Document document = new Document();
PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream(dest));
document.open();
XMLWorkerHelper.getInstance().parseXHtml(writer, document, new FileInputStream(src), null, new XMLWorkerFontProvider(){ public Font getFont(final String fontname, final String encoding,
final boolean embedded, final float size, final int style,
final BaseColor color) {
BaseFont bf = null;
try {
bf = BaseFont.createFont("C:/Windows/Fonts/SIMYOU.TTF",BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);
} catch (Exception e) {
e.printStackTrace();
}
Font font = new Font(bf, size, style, color);
font.setColor(color);
return font;
}
});
document.close();
}
創建時,使用系統(windows下)的字體即可
BaseFont baseFont = BaseFont.createFont("C:/Windows/Fonts/SIMYOU.TTF",BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);
Font font = new Font(baseFont);
⑶ java 如何給pdf文件加水印
Java生成PDF 加密 水印
1、iText簡介
iText是一個開放源碼的Java類庫,可以用來方便地生成PDF文件。大家通過訪問http://sourceforge.net/project/showfiles.php?group_id=15255&release_id=167948
下載最新版本的類庫,下載完成之後會得到一個.jar包,把這個包加入JDK的classpath即可使用。
如果生成的PDF文件中需要出現中文、日文、韓文字元,則還需要通過訪問http://itext.sourceforge.net/downloads/iTextAsian.jar
下載iTextAsian.jar包。
關於iText類庫的使用,http://www.lowagie.com/iText/tutorial/index.html
有比較詳細的教程。該教程從入門開始,比較系統地介紹了在PDF文件中放入文字、圖片、表格等的方法和技巧。
讀完這片教程,大致就可以做一些從簡單到復雜的PDF文件了。不過,試圖通過教程解決在生成PDF文件過程中遇到的所有困難無疑是一種奢望。所以,閱讀iText的api文檔顯得非常重要。讀者在下載類庫的同時,也可以下載類庫的文檔。
註:如果以上兩個下載鏈接無法下載而且通過網路也找不到這個jar包的同志可以留下郵箱地址,我會在兩個工作日之內發郵件過去。
以下部分我是我調試通過的源代碼,提供大家參考:
import java.awt.*;
import java.io.*;
import com.lowagie.text.*;
import com.lowagie.text.Font;
import
com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.*;
/**
* 最近的項目中使用Itext將txt文件轉換為PDF文件, 並且實現對文件的一些許可權控制。
現實對pdf文件加
*密,添加水印等。
*/
public class PDFConvertBL
{
//
txt原始文件的路徑
private static final String txtFilePath = "d:/11.txt";
// 生成的pdf文件路徑
private static final String pdfFilePath =
"d:/22.pdf";
// 添加水印圖片路徑
// private static final String
imageFilePath = "D:/33.jpg";
// 生成臨時文件前綴
private static final
String prefix = "tempFile";
// 所有者密碼
private static final String
OWNERPASSWORD = "12345678";
/**
* txt文件轉換為pdf文件
*
* @param txtFile
txt文件路徑
* @param pdfFile pdf文件路徑
* @param userPassWord
用戶密碼
* @param waterMarkName 水印內容
* @param permission
操作許可權
*/
public static void generatePDFWithTxt(String txtFile,
String pdfFile, String userPassWord, String
waterMarkName,
int permission)
{
try
{
// 生成臨時文件
File file =
File.createTempFile(prefix, ".pdf");
//
創建pdf文件到臨時文件
if (createPDFFile(txtFile, file))
{
// 增加水印和加密
waterMark(file.getPath(),
pdfFile, userPassWord, OWNERPASSWORD, waterMarkName, permission);
}
}
catch (Exception e)
{
e.printStackTrace();
}
}
/**
* 創建PDF文檔
*
* @param txtFilePath
txt文件路徑(源文件)
* @param pdfFilePath pdf文件路徑(新文件)
*/
private
static boolean createPDFFile(String txtFilePath, File file)
{
// 設置紙張
Rectangle rect = new Rectangle(PageSize.A4);
//
設置頁碼
HeaderFooter footer = new HeaderFooter(new Phrase("頁碼:",
setChineseFont()), true);
footer.setBorder(Rectangle.NO_BORDER);
// step1
Document
doc = new Document(rect, 50, 50, 50, 50);
doc.setFooter(footer);
try
{
FileReader
fileRead = new FileReader(txtFilePath);
BufferedReader read = new
BufferedReader(fileRead);
// 設置pdf文件生成路徑 step2
PdfWriter.getInstance(doc, new FileOutputStream(file));
//
打開pdf文件 step3
doc.open();
// 實例化Paragraph
獲取寫入pdf文件的內容,調用支持中文的方法. step4
while (read.ready())
{
// 添加內容到pdf(這里將會按照txt文件的原始樣式輸出)
doc.add(new Paragraph(read.readLine(), setChineseFont()));
}
// 關閉pdf文件 step5
doc.close();
return true;
}
catch (Exception e)
{
e.printStackTrace();
return false;
}
}
/**
* 在pdf文件中添加水印
*
* @param inputFile
原始文件
* @param outputFile 水印輸出文件
* @param waterMarkName
水印名字
*/
private static void waterMark(String inputFile, String
outputFile, String userPassWord, String ownerPassWord,
String waterMarkName, int permission)
{
try
{
PdfReader reader = new PdfReader(inputFile);
PdfStamper stamper = new PdfStamper(reader, new
FileOutputStream(outputFile));
// 設置密碼
stamper.setEncryption(userPassWord.getBytes(), ownerPassWord.getBytes(),
permission, false);
BaseFont base =
BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",
BaseFont.NOT_EMBEDDED);
int total = reader.getNumberOfPages() +
1;
// Image image =
Image.getInstance(imageFilePath);
//
image.setAbsolutePosition(200, 400);
PdfContentByte
under;
int j = waterMarkName.length();
char c =
0;
int rise = 0;
for (int i = 1; i < total;
i++)
{
rise = 500;
under =
stamper.getUnderContent(i);
// 添加圖片
//
under.addImage(image);
under.beginText();
under.setColorFill(Color.CYAN);
under.setFontAndSize(base,
30);
// 設置水印文字字體傾斜 開始
if (j >=
15)
{
under.setTextMatrix(200,
120);
for (int k = 0; k < j;
k++)
{
under.setTextRise(rise);
c =
waterMarkName.charAt(k);
under.showText(c +
"");
rise -= 20;
}
}
else
{
under.setTextMatrix(180, 100);
for (int k = 0; k < j; k++)
{
under.setTextRise(rise);
c = waterMarkName.charAt(k);
under.showText(c +
"");
rise -= 18;
}
}
// 字體設置結束
under.endText();
// 畫一個圓
//
under.ellipse(250, 450, 350, 550);
//
under.setLineWidth(1f);
// under.stroke();
}
stamper.close();
}
catch (Exception
e)
{
e.printStackTrace();
}
}
/**
* 設置中文
*
* @return Font
*/
private static Font setChineseFont()
{
BaseFont base =
null;
Font fontChinese = null;
try
{
base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",
BaseFont.EMBEDDED);
fontChinese = new Font(base, 12,
Font.NORMAL);
}
catch (DocumentException e)
{
e.printStackTrace();
}
catch (IOException
e)
{
e.printStackTrace();
}
return fontChinese;
}
public static void main(String[] args)
{
generatePDFWithTxt(txtFilePath, pdfFilePath, "123", "水印文字", 16);
}
}
文章參考一些網路博客稍加修改調試,特此申明
http://hi..com/sx_python/item/15081531ad7d1bc21b96965e
⑷ java如何讓pdf模板中的數據網格的行數根據傳入數據進行變化
import java.awt.*;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.util.ArrayList;import javax.swing.*;public class DemoJText extends JFrame {public DemoJText() {ArrayList jtfs = new ArrayList();//用於保存文本框Container c = this.getContentPane();JPanel jp = new JPanel();int row = 10;//行數int col = 9;//列數jp.setLayout(new GridLayout(row,col, 5, 5));for (int i = 0; i < 90; i++) {JTextField jtf= new JTextField("");jtfs.add(jtf);jp.add(jtf);}c.add(jp);JPanel jp1 = new JPanel();final JButton jb = new JButton("清除");final JButton jbOut = new JButton("控制台輸出");jp1.add(jb);jp1.add(jbOut);c.add(jp1, BorderLayout.SOUTH);jb.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {for (int i = 0; i < jtfs.size(); i++) {jtfs.get(i).setText("");}}});jbOut.addActionListener(new ActionListener() {@Overridepublic void actionPerformed(ActionEvent e) {for (int i = 0; i < jtfs.size(); i++) {String temp = jtfs.get(i).getText();//可以不用判斷全部輸出.我這里就先判斷下,如果不為空才輸出if(!temp.equals("")){//如果不為空就輸出int r = i/col+1;//行int c = i%col+1;//列System.out.println("第"+r+"行"+"第"+c+"列"+temp);}}}});this.setBounds(160, 250, 300, 350);this.setTitle("測試");this.setDefaultCloseOperation(EXIT_ON_CLOSE);this.setVisible(true);}public static void main(String[] args) {new DemoJText();}}輸出
⑸ java生成PDF的時候報了 如下異常 怎麼回事
出現這個問題的原因就是,提問者用的是字元流,實際不物扒搭確定文件類型的時候,需要用位元組流進行傳遞,之後會原樣輸出,否則會有錯誤。舉例:
FileInputStream fis = new FileInputStream("D:/test.pdf");//要進行復制的文件讀取
FileOutputStream fos = new FileOutputStream("D:/testFinal.pdf");//要保存的文件
int length = 0;/此雹/初罩拿始化流長度
byte[] buffer = new byte[2024]; // 緩存位元組設置為2m
while((length=fis.read(buffer)) != -1){//如果內容長度不是空
fos.write(buffer, 0, length);//寫入到新文件
}
fos.close();//關閉不用的流
fis.close();//關閉不需要的流
備註:IO流在使用完成後,一定要通過close方法及時關閉。
⑹ java 怎樣給相對路徑下的pdf文件加水印
3、在文檔選項頁面,選擇水印--添加;
4、首先輸入文本即水印內容,以及文本大小,顏色和字體信息;
5、接著設置文本放置的方向,可以自定義任意角度,為了不影響閱讀,可以設置透明度;
⑺ java 將pdf轉成JPG。。
BufferedImage tag = new BufferedImage(rect.width, rect.height,
BufferedImage.TYPE_INT_RGB);
這句是讀入圖片的流,傳入的參數是圖片本身的長,高,RGB色位。
tag.getGraphics().drawImage(img, 0, 0, rect.width, rect.height,
null);
這句是輸出圖片的方法,幾個參數分別是,圖片對象,0,0,圖片的長,高,null。
所以應該是改下句的這兩個參數,你把rect.width和rect.height的數值放大兩倍看看。
應該是這里。
⑻ java程序下載pdf文件
主要是 URL 和 HttpURLConnection 類的運用,看代碼:
importjava.io.DataInputStream;
importjava.io.FileOutputStream;
importjava.io.IOException;
importjava.net.HttpURLConnection;
importjava.net.URL;
publicclassHttpDownloader{
_FILE_URL="http://211.103.156.163/u/cms/www/201511/25051940i6ou.pdf";
privatestaticfinalStringLOCAL_FILE_PATH="D:/some.pdf";//改成你保存文件的路徑
publicstaticvoidmain(String[]args){
newHttpDownloader(REMOTE_FILE_URL,LOCAL_FILE_PATH).download();
}
privateStringremoteFileUrl;
privateStringlocalFilePath;
publicHttpDownloader(StringremoteFileUrl,StringlocalFilePath){
this.remoteFileUrl=remoteFileUrl;
this.localFilePath=localFilePath;
}
publicvoiddownload(){
try{
URLurl=newURL(remoteFileUrl);
=(HttpURLConnection)url.openConnection();
httpURLConnection.setConnectTimeout(5*1000);//5000毫秒內沒有連接上則放棄連接
httpURLConnection.connect();//連接
System.out.println("連接URL成功~");
intfileLenght=httpURLConnection.getContentLength();
System.out.println("文件大小:"+(fileLenght/1024.0)+"KB");
System.out.println("開始下載...");
try(DataInputStreamdis=newDataInputStream(httpURLConnection.getInputStream());
FileOutputStreamfos=newFileOutputStream(localFilePath)){
byte[]buf=newbyte[10240];//根據實際情況可以增大buf大小
for(intreadSize;(readSize=dis.read(buf))>0;){
fos.write(buf,0,readSize);
}
System.out.println("下載完畢~");
}catch(IOExceptionex){
System.out.println("下載時出錯");
}
httpURLConnection.disconnect();
}catch(IOExceptionex){
System.out.println("URL不存在或者連接超時");
}
}
}
⑼ 用java實現pdf轉jpg圖片的全代碼,我這里附上參考代碼。
學JAVA就到廣州瘋狂JAVA來學習 李剛授課 我是不能。。。
⑽ 如何在jsp中直接打開本地硬碟上的pdf等文件
jsp中要利用java來實現打開,可以通過瀏覽器打開:
以下程序實現了讀取某個路徑下的pdf文件,並用瀏覽器打開:
package test;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.OutputStream;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class PDFServlet extends HttpServlet {
private static final long serialVersionUID = -3065671125866266804L;
public PDFServlet() {
super();
}
public void destroy() {
super.destroy();
}
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("application/pdf");
FileInputStream in = new FileInputStream(new File("d:/1.pdf"));
OutputStream out = response.getOutputStream();
byte[] b = new byte[512];
while ((in.read(b)) != -1) {
out.write(b);
}
out.flush();
in.close();
out.close();
}
public void init() throws ServletException {
}
}