该文将介绍如何在java应用程序中插入条形码到word文档。首先得将条形码字体安装至电脑中, 安装好的条形码字体在目录c:\windows\fonts下能查找到。
import com.spire.doc.*;
import com.spire.doc.documents.paragraph;
import com.spire.doc.fields.textrange;
public class barcodetoword {
public static void main(string[] args) {
//创建document对象,添加section及段落
document document = new document();
section section = document.addsection();
paragraph para = section.addparagraph();
//添加条形码并设置大小,字体
textrange tr = para.appendtext("h63twx11072");
tr.getcharacterformat().setfontname("c39hrp60dltt");
tr.getcharacterformat().setfontsize(80f);
//保存文档
document.savetofile("barcode.docx", fileformat.docx);
}
}
效果图: