从资源bean加载文件?

时间:2013-08-22 08:59:36

标签: java itext

我想加载一些字体并将它们与Itext一起使用。

我将字体保存在/resources/font/文件夹中。我试着加载它们

BaseFont verdana_bf = BaseFont.createFont("../resources/font/Calibri.ttf", BaseFont.IDENTITY_H, BaseFont.EMBEDDED);

但它不起作用,我得到以下错误:

java.io.IOException: ../resources/font/Calibri.ttf not found as file or resource.

如何从我的bean中的资源文件夹中加载字体,图像?我还需要加载一些图像。

1 个答案:

答案 0 :(得分:1)

试试这个     Myclass.class.getResource( “/字体/ calibri.ttf”);

为此,需要将resources文件夹添加到构建路径中。