我正在尝试将数学符号放入PDF中。错误java.io.IOException:resources/fonts/FreeSans.ttf未作为文件或资源找到。
public class CreateTable {
public static final String FONT = "resources/fonts/FreeSans.ttf";
public static void main(String[] args) throws FileNotFoundException, DocumentException {
BaseFont bf = null;
try {
bf = BaseFont.createFont(FONT, BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
} catch (IOException e) {
e.printStackTrace();
}
Font f = new Font(bf, 12);
Document document = new Document(); // Whole page is consider as docuemnt so we need object .
PdfPTable table = new PdfPTable(7); //Create Table Object
//Adding alignment and cells with defining rows
table.getDefaultCell().setHorizontalAlignment(Element.ALIGN_CENTER);
table.addCell("");
table.addCell("Age u00AC");
table.addCell("Location");
table.addCell("Anotherline");
table.setHeaderRows(1);}
}
该文件位于resources文件夹中的字体下。我做错什么了吗?
从您的错误来看,您的程序似乎没有得到文件,所以抛出了异常。
IOException具有子类,如FileNotFoundException。请确保文件路径正确,并且资源目录中有ttf文件。