2

这是我想要做的:

Display.getCurrent().loadFont("fonts/helveticaNeueBold_iOS7.ttf")
  • 在测试器中工作(即具有入口点的类)。
  • 不适用于 RCP 应用程序。

加载机制有何不同?我应该获取文件,然后提取它的ttf路径吗?

4

2 回答 2

3

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.

于 2013-11-14T16:57:32.233 回答
1

亚历山大的回答也可能对某些人有所帮助。

对我来说,以下代码片段起到了作用:

final String path = "fonts/helveticaNeueBold_iOS7.ttf";
final URL pathUrl = BundleUtility.find(PLUGIN_ID, path);
final boolean isFontLoaded = Display.getCurrent().loadFont(pathUrl.toExternalForm());

虽然要注意BundleUtility访问受限。

于 2014-05-02T12:12:05.680 回答