Itext的com.itextpdf.text.Phrase类的作用是添加一个短句。短语类知道如何添加行与行之间的间距。
例子一代码如下:
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Phrase;
import com.itextpdf.text.pdf.PdfWriter;
public class DocumentExample {
public static void main(String[] args) {
//创建文本
Document document = new Document();
try {
//写入到输出流中
PdfWriter.getInstance(document, new FileOutputStream("Phrase.pdf"));
//打开文本
document.open();
//添加短句
document.add(new Phrase("This is sentence 1. "));
document.add(new Phrase("This is sentence 2. "));
document.add(new Phrase("This is sentence 3. "));
document.add(new Phrase("This is sentence 4. "));
document.add(new Phrase("This is sentence 5. "));
document.add(new Phrase("This is sentence 6. "));
//关闭文本
document.close();
} catch (DocumentException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
运行结果如下
[img]http://dl.iteye.com/upload/attachment/0062/5977/189453e7-8683-3661-8bea-189eb9a29cff.png[/img]
请注意它与块不同的是它如果写到一行的尾部会自动换行。
例子二设置行间距
代码如下
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import com.itextpdf.text.Chunk;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Phrase;
import com.itextpdf.text.pdf.PdfWriter;
public class DocumentExample {
public static void main(String[] args) {
//创建文本
Document document = new Document();
try {
//写入到输出流中
PdfWriter.getInstance(document, new FileOutputStream("Phrase.pdf"));
//打开文本
document.open();
//定义文本块
Chunk chunk = new Chunk("This is a sentence ");
//设置行间距
Phrase phrase = new Phrase(50);
//添加短句
phrase.add(chunk);
phrase.add(chunk);
phrase.add(chunk);
phrase.add(chunk);
phrase.add(chunk);
phrase.add(chunk);
//添加短句
document.add(phrase);
//关闭文本
document.close();
} catch (DocumentException e) {
e.printStackTrace();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
运行结果如下
[img]http://dl.iteye.com/upload/attachment/0062/5984/c4aeb81e-5957-31b6-9e9d-d62ad3dd68b3.png[/img]
注意两行之间的距离。
小宝制造。今天的文章Itext 学习笔记(三) Phrase(短句)的用法分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/63901.html