pdfdocument.java
来自「用Itext生成Pdf格式文件。 1、新建一个Java工程 2、在工程下新」· Java 代码 · 共 44 行
JAVA
44 行
package smart.app.pdf;
import com.lowagie.text.Document;
import com.lowagie.text.Rectangle;
/**
* @author Administrator
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class PdfDocument extends Document {
/**
*
*/
public PdfDocument() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param arg0
*/
public PdfDocument(Rectangle arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
/**
* @param arg0
* @param arg1
* @param arg2
* @param arg3
* @param arg4
*/
public PdfDocument(Rectangle arg0, float arg1, float arg2, float arg3,
float arg4) {
super(arg0, arg1, arg2, arg3, arg4);
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?