大学生程序员必备的十款工具
程序员10款必备工具抓紧掌握
01·Vim文本编辑器
优点:功能强大、高度可定制,Vi编辑器中最好的一个。
Vim是vi发展出来的一个文本编辑器。代码补全、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用,和Emacs并列成为类Unix系统用户最喜欢的文本编辑器。
02·uTools桌面插件工具
优点:简洁美观、插件化,能够节约时间。uTools 是一个极简、插件化的现代桌面软件,通过自由选配丰富的插件,打造得心应手的工具集合。
03·Git分布式版本控制系统
优点:分布式开发、速度快、灵活。Git是一个开源的分布式版本控制系统,可以有效、高速地处理从很小到非常大的项目版本管理。也是LinusTorvalds为了帮助管理Linux内核开发而开发的一个开放源码的版本控制软件。
04·Navicat数据库管理工具
优点:高效、安全,是最好用的数据库管理工具。“Navicat”是一套可创建多个连接的数据库管理工具,用以方便管理 MySQL、Oracle、PostgreSQL、SQLite、SQL Server、MariaDB 和 MongoDB 等不同类型的数据库,它与阿里云、腾讯云、华为云、Amazon RDS、Amazon Aurora、AmazonRedshift、Microsoft Azure、Oracle Cloud 和MongoDB Atlas等云数据库兼容
05·IntelliJ IDEA集成开发环境
优点:业界排名第一的java开发工具。IintelliJIDEA,是java编程语言的集成开发环境。IntelliJ在业界被公认为最好的Java开发工具,尤其在智能代码助手、代码自动提示、重构、JavaEE支持各类版本工具(git、svn等)、JUnit、CVS整合、代码分析、创新的GUI设计等方面的功能可以说是超常的。
06·iTerm2终端管理器
优点:功能强大,一款终端神器。Term2 Mac版可以说是Mac下最好的终端工具。iTerm2拥有多标签、中键复制粘贴、命令记忆、高亮指针、迅捷重复、全屏切换等功能,提升操作效率。
07·Alfred查询和搜索工具
优点:被称作效率神器。
Alfred是 Mac系统上一款专注于效率提升的著名应用,它能帮你快速打开网页、快速进行自定义搜索查看剪贴板历史、快速查询单词等等。Alfred 提供的功能虽然很多,但目的只有一个 - 那就是减少我们工作中的一些重复动作,提升我们的工作效率。
08·Beyond Compare代码比较工具
优点:高效,适用于用于文档、源代码和HTMLoBeyond Compare可以很方便地对比出两份源代码文件之间的不同之处,相差的每一个字节用颜色加以表示,查看方便,支持多种规则对比。
09·Docker开源的应用容器引擎
优点:跨平台,跨服务器,实现应用程序跨平台间的无缝衔接。
Docker 其中包括,镜像、容器、仓库,很简单,目的就是通过对应用组件的封装、分发、部署、运行等生命周期的管理,使用户的产品(可以是 web 应用或者数据库应用)及其环境能够做到“一次封装,到处运行”。
10·Postman接口调试与测试工具
优点:功能强大,使用简单且易用性好。Postman是一个简单好用的网页调试软件,很适合开发人员使用,性能稳定流畅,提供接口测试、并发测试等功能,还支持编写测试脚本,快速处理各种HTTP请求,测试数据精准高效。
我有个 文件传输的程序~~~ 可能你需要改一下你的 IP!!
通过Socket 处理IO流!(远程都测试过的 绝对行!)
流程是这样的~~:
客户端选择文件,并发送!
服务端接受数据,并保存为文件!
//////////////////////////////////////////////客户端程序:
////////////////////文件一:Windowjava
package clientwindow;
import clientChooseFile;
import clientSendFile;
import javaxswingJOptionPane;
import javaawteventMouseAdapter;
import javaawteventMouseEvent;
import javaxswingJButton;
import javaxswingJFrame;
import javaxswingJLabel;
import javaxswingJMenu;
import javaxswingJMenuBar;
import javaxswingJMenuItem;
import javaxswingJTextArea;
import javaxswingJTextField;
public class Window {
public boolean ready;
public static JTextArea textArea;
private JTextField portTextField;
private JTextField hostTextField;
private JTextField fileTextField;
private JFrame frame;
/
Launch the application
@param args
/
public static void main(String args[]) {
try {
Window window = new Window();
windowframesetVisible(true);
} catch (Exception e) {
eprintStackTrace();
}
}
/
Create the application
/
public Window() {
initialize();
}
/
Initialize the contents of the frame
/
private void initialize() {
frame = new JFrame();
framesetTitle("客户端");
framegetContentPane()setLayout(null);
framesetBounds(100, 100, 390, 275);
framesetLocation(300, 250);
framesetDefaultCloseOperation(JFrameEXIT_ON_CLOSE);
final JMenuBar menuBar = new JMenuBar();
framesetJMenuBar(menuBar);
final JMenu fileMenu = new JMenu();
fileMenusetText("文件");
menuBaradd(fileMenu);
final JMenuItem exitMenuItem = new JMenuItem();
exitMenuItemaddMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
JOptionPaneshowMessageDialog(null, "Bye Bye!");
Systemexit(1);
}
});
exitMenuItemsetText("退出");
fileMenuadd(exitMenuItem);
final JMenu helpMenu = new JMenu();
helpMenusetText("帮助");
menuBaradd(helpMenu);
final JMenuItem viewMenuItem = new JMenuItem();
viewMenuItemsetText("查看");
helpMenuadd(viewMenuItem);
final JLabel fileLabel = new JLabel();
fileLabelsetText("文件位置:");
fileLabelsetBounds(30, 40, 80, 15);
framegetContentPane()add(fileLabel);
fileTextField = new JTextField();
fileTextFieldsetBounds(116, 37, 163, 22);
framegetContentPane()add(fileTextField);
//选择文件
final JButton viewButton = new JButton();
viewButtonaddMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
new ChooseFile();
if(ChooseFileFILENAME == null || ChooseFilePATH == null){
JOptionPaneshowMessageDialog(null, "请选择存储文件!");
}
else{
fileTextFieldsetText(ChooseFilePATH);
textAreaappend("选择文件:"+ChooseFileFILENAME+"\n");
ready = true;
}
}
});
viewButtonsetText("浏览");
viewButtonsetBounds(296, 37, 78, 22);
framegetContentPane()add(viewButton);
final JLabel addLabel = new JLabel();
addLabelsetText("主机地址:");
addLabelsetBounds(30, 93, 80, 15);
framegetContentPane()add(addLabel);
hostTextField = new JTextField();
hostTextFieldsetBounds(116, 90, 163, 22);
hostTextFieldsetText("127001");
hostTextFieldsetEditable(false);
framegetContentPane()add(hostTextField);
final JLabel portLabel = new JLabel();
portLabelsetText("端口");
portLabelsetBounds(285, 93, 42, 15);
framegetContentPane()add(portLabel);
portTextField = new JTextField();
portTextFieldsetBounds(322, 90, 52, 22);
portTextFieldsetText("6666");
portTextFieldsetEditable(false);
framegetContentPane()add(portTextField);
//发送文件
final JButton sendButton = new JButton();
sendButtonaddMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
try{
if(ready){
new SendFile(fileTextFieldgetText(),"127001",6666);//这里更改IP
}
else{
JOptionPaneshowMessageDialog(null, "请选择文件!");
}
}
catch(Exception exception){
Systemoutprintln(exception);
}
}
});
sendButtonsetText("发送");
sendButtonsetBounds(296, 137, 78, 22);
framegetContentPane()add(sendButton);
//退出程序
final JButton exitButton = new JButton();
exitButtonaddMouseListener(new MouseAdapter() {
public void mousePressed(MouseEvent e) {
JOptionPaneshowMessageDialog(null, "Bye Bye!");
Systemexit(1);
}
});
exitButtonsetText("退出");
exitButtonsetBounds(296, 182, 78, 22);
framegetContentPane()add(exitButton);
final JLabel sendLabel = new JLabel();
sendLabelsetText("发送状态:");
sendLabelsetBounds(30, 140, 80, 15);
framegetContentPane()add(sendLabel);
textArea = new JTextArea();
//textAreaadd(JTextArea);
textAreasetBounds(116, 138, 163, 66);
textAreasetEditable(false);
textAreasetLineWrap(true);
framegetContentPane()add(textArea);
//textAreaadd(scrollPane);
}
}
///////////////////////////////////////////文件二:ChooseFilejava
/
/
package client;
import javaxswing;
/
@author 泥鳅
/
// 该类用于选择本地文件,并返回文件路径和文件名
public class ChooseFile {
private JFileChooser jfile;
private JDialog jd;
public static String PATH;
public static String FILENAME;
public ChooseFile(){
jfile = new JFileChooser();
jd = new JDialog();
// jdadd(jfile);
// jfilesetVisible(true);
// jdsetLocation(320, 270);
// jdsetSize(280, 230);
// jdsetVisible(true);
if(JFileChooserAPPROVE_OPTION == jfileshowOpenDialog(jd)){
// Systemoutprintln("OK");
String oldstr = jfilegetSelectedFile()getPath();
//返回路径
PATH = changePath(oldstr);
//返回文件名
FILENAME = jfilegetSelectedFile()getName();
}
}
//将路径格式转换成 java所识别的路径格式
public String changePath(String oldstr){
// String newstr;
/
for(int i=0;i<=oldstrlength();i++){
if(oldstrcharAt(i)=='\\'){
}
}
/
return oldstrreplaceAll("\\\\", "\\\\\\\\");
}
}
//////////////////////////////////////////文件三:SendFilejava
/
/
package client;
import clientwindowWindow;
import javaio;
import javanet;
/
@author 泥鳅
/
public class SendFile {
private Socket socket;
private FileInputStream input;
private DataOutputStream output;
private File file;
public SendFile(String fileName,String ip,int port) throws IOException{
//生成一个 File对象 以获得选择文件长度(大小)
file = new File(fileName);
/ if((int)filelength()>2000000000){
//文件太大就不发送
JOptionPaneshowMessageDialog(null, "文件太大,请重新选择!");
}
else{
/ WindowtextAreaappend("文件大小:"+StringvalueOf(filelength())+"Bytes"+"\n");
socket = new Socket(ip,port);
input = new FileInputStream(fileName);
output = new DataOutputStream(socketgetOutputStream());
byte[] b = new byte[1024];
int length = 0;
while((length = inputread(b)) !=-1){
outputwrite(b,0,length);
Systemoutprintln("发送字节:"+length);
}
// }
WindowtextAreaappend("发送完毕"+"\n");
Systemoutprintln("发送完毕");
inputclose();
outputflush();
outputclose();
}
}
/////////////////////////////////////////////////服务端:
////////////////////////文件一:Windowjava
/
/
package client;
import clientwindowWindow;
import javaio;
import javanet;
/
@author 泥鳅
/
public class SendFile {
private Socket socket;
private FileInputStream input;
private DataOutputStream output;
private File file;
public SendFile(String fileName,String ip,int port) throws IOException{
//生成一个 File对象 以获得选择文件长度(大小)
file = new File(fileName);
/ if((int)filelength()>2000000000){
//文件太大就不发送
JOptionPaneshowMessageDialog(null, "文件太大,请重新选择!");
}
else{
/ WindowtextAreaappend("文件大小:"+StringvalueOf(filelength())+"Bytes"+"\n");
socket = new Socket(ip,port);
input = new FileInputStream(fileName);
output = new DataOutputStream(socketgetOutputStream());
byte[] b = new byte[1024];
int length = 0;
while((length = inputread(b)) !=-1){
outputwrite(b,0,length);
Systemoutprintln("发送字节:"+length);
}
// }
WindowtextAreaappend("发送完毕"+"\n");
Systemoutprintln("发送完毕");
inputclose();
outputflush();
outputclose();
}
}
////////////////////////////////////////文件二:GetFilejava
/
/
package server;
import javanet;
import javaio;
import serverwindowWindow;
/
@author 泥鳅
/
public class GetFile extends Thread{
private ServerSocket server;
private Socket socket;
private FileOutputStream output;
private DataInputStream input;
public GetFile() throws IOException{
}
public void run(){
try{
server = new ServerSocket(6666);
socket = new Socket();
Systemoutprintln("服务器启动");
socket = serveraccept();
byte[] b = new byte[1024];
input = new DataInputStream(socketgetInputStream());
output = new FileOutputStream(StoreFilePATH,true);
int length = 0;
while((length = inputread(b) )!= -1){
outputwrite(b,0,length);
Systemoutprintln("接受成功:"+"接受字节"+length);
}
WindowtextAreaappend("保存完毕!"+"\n");
Systemoutprintln("保存完毕!");
serverclose();
socketclose();
inputclose();
outputclose();
}
catch(IOException e){
Systemoutprintln(egetMessage());
}
}
}
/////////////////////////文件三:StoreFilejava
/
/
package server;
import javaxswingJDialog;
import javaxswingJFileChooser;
import javaioFile;
import javaxswingJOptionPane;
/
@author 泥鳅
/
public class StoreFile {
private JDialog jd;
private JFileChooser chooseFile;
public static String PATH;
public static String FILENAME;
private File fileName;
public StoreFile(){
jd = new JDialog();
chooseFile = new JFileChooser();
if(JFileChooserAPPROVE_OPTION == chooseFileshowSaveDialog(jd)){
String oldstr = chooseFilegetSelectedFile()getPath();
String newStr = changePath(oldstr);
fileName = new File(newStr);
if(fileNameexists()){
JOptionPaneshowMessageDialog(null, "请文件已经存在,输入其他文件名!");
}
else{
//返回路径
PATH = newStr;
//返回文件名
FILENAME = chooseFilegetSelectedFile()getName();
}
/ if(oldstr == null){
JOptionPaneshowMessageDialog(null, "请选择存储文件!");
}
/
}
}
//将路径格式转换成 java所识别的路径格式
public String changePath(String oldstr){
return oldstrreplaceAll("\\\\", "\\\\\\\\");
}
}
1、使用quarz或者jdk的timer来制定定时任务。
2、使用jdbc或者hibernate等方法获取数据库中信息。
3、使用xmlbeans或者dom4j等技术生成xml文件。
4、使用sunnetftpFtpClient上传到指定ftp服务器。
如何使用Java组件itext 生成pdf?iText是一个能够快速产生PDF文件的java类库。iText的java类对于那些要产生包含文本,表格,图形的只读文档是很有用的。它的类库尤其与java Servlet有很好的给合。使用iText与PDF能够使你正确的控制Servlet的输出。
在企业的信息系统中,报表处理一直占比较重要的作用,Java组件——iText可以非常快速的生成PDF报表。iText是着名的开放源码的站点sourceforge一个项目,是用于生成PDF文档的一个java类库。通过iText不仅可以生成PDF或rtf的文档,而且可以将XML、 Html文件转化为PDF文件。通过在服务器端使用Jsp或JavaBean生成PDF报表,客户端采用超级连接显示或下载得到生成的报表,这样就很好的解决了B/S系统的报表处理问题了。
一、iText介绍
iText是着名的开放源码的站点sourceforge一个项目,是用于生成PDF文档的一个java类库。通过iText不仅可以生成PDF或rtf的文档,而且可以将XML、Html文件转化为PDF文件。
iText的安装非常方便,在http://wwwlowagiecom/iText/downloadhtml - download 网站上下载iTextjar文件后,只需要在系统的CLASSPATH中加入iTextjar的路径,在程序中就可以使用iText类库了。
二、建立第一个PDF文档
用iText生成PDF文档需要5个步骤:
①建立comlowagietextDocument对象的实例。
Document document = new Document();
②建立一个书写器(Writer)与document对象关联,通过书写器(Writer)可以将文档写入到磁盘中。
PDFWritergetInstance(document, new FileOutputStream("HelloworldPDF"));
③打开文档。
documentopen();
④向文档中添加内容。
documentadd(new Paragraph("Hello World"));
⑤关闭文档。
documentclose();
通过上面的5个步骤,就能产生一个HelloworldPDF的文件,文件内容为"Hello World"。
建立comlowagietextDocument对象的实例
comlowagietextDocument对象的构建函数有三个,分别是:
public Document();
public Document(Rectangle pageSize);
public Document(Rectangle pageSize,
int marginLeft,
int marginRight,
int marginTop,
int marginBottom);
构建函数的参数pageSize是文档页面的大小,对于第一个构建函数,页面的大小为A4,同Document(PageSizeA4)的效果一样;对于第三个构建函数,参数marginLeft、marginRight、marginTop、marginBottom分别为左、右、上、下的页边距。
通过参数pageSize可以设定页面大小、面背景色、以及页面横向/纵向等属性。iText定义了A0-A10、AL、LETTER、 HALFLETTER、_11x17、LEDGER、NOTE、B0-B5、ARCH_A-ARCH_E、FLSA 和FLSE等纸张类型,也可以通过Rectangle pageSize = new Rectangle(144, 720);自定义纸张。通过Rectangle方法rotate()可以将页面设置成横向。
书写器(Writer)对象
一旦文档(document)对象建立好之后,需要建立一个或多个书写器(Writer)对象与之关联。通过书写器(Writer)对象可以将具体文档存盘成需要的格式,如comlowagietextPDFPDFWriter可以将文档存成PDF文件, comlowagietexthtmlHtmlWriter可以将文档存成html文件。
设定文档属性
在文档打开之前,可以设定文档的标题、主题、作者、关键字、装订方式、创建者、生产者、创建日期等属性,调用的方法分别是:
public boolean addTitle(String title)
public boolean addSubject(String subject)
public boolean addKeywords(String keywords)
public boolean addAuthor(String author)
public boolean addCreator(String creator)
public boolean addProducer()
public boolean addCreationDate()
public boolean addHeader(String name, String content)
其中方法addHeader对于PDF文档无效,addHeader仅对html文档有效,用于添加文档的头信息。
当新的页面产生之前,可以设定页面的大小、书签、脚注(HeaderFooter)等信息,调用的方法是:
public boolean setPageSize(Rectangle pageSize)
public boolean add(Watermark watermark)
public void removeWatermark()
public void setHeader(HeaderFooter header)
public void resetHeader()
public void setFooter(HeaderFooter footer)
public void resetFooter()
public void resetPageCount()
public void setPageCount(int pageN)
如果要设定第一页的页面属性,这些方法必须在文档打开之前调用。
对于PDF文档,iText还提供了文档的显示属性,通过调用书写器的setViewerPreferences方法可以控制文档打开时Acrobat Reader的显示属性,如是否单页显示、是否全屏显示、是否隐藏状态条等属性。
另外,iText也提供了对PDF文件的安全保护,通过书写器(Writer)的setEncryption方法,可以设定文档的用户口令、只读、可打印等属性。
添加文档内容
所有向文档添加的内容都是以对象为单位的,如Phrase、Paragraph、Table、Graphic对象等。比较常用的是段落(Paragraph)对象,用于向文档中添加一段文字。
三、文本处理
iText中用文本块(Chunk)、短语(Phrase)和段落(paragraph)处理文本。
文本块(Chunk)是处理文本的最小单位,有一串带格式(包括字体、颜色、大小)的字符串组成。如以下代码就是产生一个字体为HELVETICA、大小为10、带下划线的字符串:
Chunk chunk1 = new Chunk("This text is underlined", FontFactorygetFont(FontFactoryHELVETICA, 12, FontUNDERLINE));
短语(Phrase)由一个或多个文本块(Chunk)组成,短语(Phrase)也可以设定字体,但对于其中以设定过字体的文本块 (Chunk)无效。通过短语(Phrase)成员函数add可以将一个文本块(Chunk)加到短语(Phrase)中,如:phrase6add(chunk);
段落(paragraph)由一个或多个文本块(Chunk)或短语(Phrase)组成,相当于WORD文档中的段落概念,同样可以设定段落的字体大小、颜色等属性。另外也可以设定段落的首行缩进、对齐方式(左对齐、右对齐、居中对齐)。通过函数setAlignment可以设定段落的对齐方式, setAlignment的参数1为居中对齐、2为右对齐、3为左对齐,默认为左对齐。
四、表格处理
iText中处理表格的类为:comlowagietextTable和comlowagietextPDFPDFPTable,对于比较简单的表格处理可以用comlowagietextTable,但是如果要处理复杂的表格,这就需要 comlowagietextPDFPDFPTable进行处理。这里就类comlowagietextTable进行说明。
类comlowagietextTable的构造函数有三个:
①Table (int columns)
②Table(int columns, int rows)
③Table(Properties attributes)
参数columns、rows、attributes分别为表格的列数、行数、表格属性。创建表格时必须指定表格的列数,而对于行数可以不用指定。
建立表格之后,可以设定表格的属性,如:边框宽度、边框颜色、衬距(padding space 即单元格之间的间距)大小等属性。下面通过一个简单的例子说明如何使用表格,代码如下:
1:Table table = new Table(3);
2:tablesetBorderWidth(1);
3:tablesetBorderColor(new Color(0, 0, 255));
4:tablesetPadding(5);
5:tablesetSpacing(5);
6:Cell cell = new Cell("header");
7:cellsetHeader(true);
8:cellsetColspan(3);
9:tableaddCell(cell);
10:tableendHeaders();
11:cell = new Cell("example cell with colspan 1 and rowspan 2");
12:cellsetRowspan(2);
13:cellsetBorderColor(new Color(255, 0, 0));
14:tableaddCell(cell);
15:tableaddCell("11");
16:tableaddCell("21");
17:tableaddCell("12");
18:tableaddCell("22");
19:tableaddCell("cell test1");
20:cell = new Cell("big cell");
21:cellsetRowspan(2);
22:cellsetColspan(2);
23:tableaddCell(cell);
24:tableaddCell("cell test2");
运行结果如下:
header
example cell with colspan 1 and rowspan 2 11 21
12 22
cell test1 big cell
cell test2
代码1-5行用于新建一个表格,如代码所示,建立了一个列数为3的表格,并将边框宽度设为1,颜色为蓝色,衬距为5。
代码6-10行用于设定表格的表头,第7行cellsetHeader(true);是将该单元格作为表头信息显示;第8行 cellsetColspan(3);指定了该单元格占3列;为表格添加表头信息时,要注意的是一旦表头信息添加完了之后,必须调用 endHeaders()方法,如第10行,否则当表格跨页后,表头信息不会再显示。
代码11-14行是向表格中添加一个宽度占一列,长度占二行的单元格。
往表格中添加单元格(cell)时,按自左向右、从上而下的次序添加。如执行完11行代码后,表格的右下方出现2行2列的空白,这是再往表格添加单元格时,先填满这个空白,然后再另起一行,15-24行代码说明了这种添加顺序。
五、图像处理
iText中处理表格的类为comlowagietextImage,目前iText支持的图像格式有:GIF, Jpeg, PNG, wmf等格式,对于不同的图像格式,iText用同样的构造函数自动识别图像格式。通过下面的代码分别获得gif、jpg、png图像的实例。
Image gif = ImagegetInstance("vonnegutgif");
Image jpeg = ImagegetInstance("myKidsjpg");
Image png = ImagegetInstance("hitchcockpng");
图像的位置
图像的位置主要是指图像在文档中的对齐方式、图像和文本的位置关系。IText中通过函数public void setAlignment(int alignment)进行处理,参数alignment为ImageRIGHT、ImageMIDDLE、ImageLEFT分别指右对齐、居中、左对齐;当参数alignment为ImageTEXTWRAP、ImageUNDERLYING分别指文字绕图形显示、图形作为文字的背景显示。这两种参数可以结合以达到预期的效果,如setAlignment(ImageRIGHT|ImageTEXTWRAP)显示的效果为图像右对齐,文字围绕图像显示。
图像的尺寸和旋转
如果图像在文档中不按原尺寸显示,可以通过下面的函数进行设定:
public void scaleAbsolute(int newWidth, int newHeight)
public void scalePercent(int percent)
public void scalePercent(int percentX, int percentY)
函数public void scaleAbsolute(int newWidth, int newHeight)直接设定显示尺寸;函数public void scalePercent(int percent)设定显示比例,如scalePercent(50)表示显示的大小为原尺寸的50%;而函数scalePercent(int percentX, int percentY)则图像高宽的显示比例。
如果图像需要旋转一定角度之后在文档中显示,可以通过函数public void setRotation(double r)设定,参数r为弧度,如果旋转角度为30度,则参数r= MathPI / 6。
六、中文处理
默认的iText字体设置不支持中文字体,需要下载远东字体包iTextAsianjar,否则不能往PDF文档中输出中文字体。通过下面的代码就可以在文档中使用中文了:
BaseFont bfChinese = BaseFontcreateFont("STSong-Light", "UniGB-UCS2-H", BaseFontNOT_EMBEDDED);
comlowagietextFont FontChinese = new comlowagietextFont(bfChinese, 12, comlowagietextFontNORMAL);
Paragraph pragraph=new Paragraph("你好", FontChinese);
0条评论