这就是我想要做的事情:
Display.getCurrent().loadFont("fonts/helveticaNeueBold_iOS7.ttf")
加载机制有何不同?我应该获取 ttf
文件,然后提取它的路径吗?
答案 0 :(得分:2)
Eclipse包有不同的路径(类似“bundleentry:// bundle_number / path_to_your_file”)。您可能希望使用FileLocator
正确加载文件。例如:
Bundle bundle = Activator.getDefault().getBundle();
Path path = new Path("fonts/helveticaNeueBold_iOS7.ttf");
URL url = FileLocator.find(bundle, path, Collections.EMPTY_MAP);
URL fileUrl = null;
try {
fileUrl = FileLocator.toFileURL(url);
}
catch (IOException e) {
// Will happen if the file cannot be read for some reason
e.printStackTrace();
}
File file = new File(fileUrl.getPath());
boolean loadFont = Display.getCurrent().loadFont(file.toString());
另外,请检查FileLocator
中提供的其他方法。
答案 1 :(得分:1)
Alexander's answer对某些人也有帮助。
对我来说,以下代码片段起到了作用:
final String path = "fonts/helveticaNeueBold_iOS7.ttf";
final URL pathUrl = BundleUtility.find(PLUGIN_ID, path);
final boolean isFontLoaded = Display.getCurrent().loadFont(pathUrl.toExternalForm());
虽然要注意BundleUtility
限制了访问权限。