如何在 Mac OS X 中获取字体文件夹路径?

发布于 2024-11-06 08:31:30 字数 196 浏览 0 评论 0原文

在 Windows 操作系统中,我可以使用此 java 代码获取字体文件夹路径:

System.out.println( FontManager.getFontPath( true ) );  // C:\WINDOWS\Fonts

但在 Mac OS X 中,此代码不返回任何内容。 Mac 上有替代代码吗?

In Windows O.S i can get the fonts folder path using this java code :

System.out.println( FontManager.getFontPath( true ) );  // C:\WINDOWS\Fonts

But in Mac OS X this code returns nothing. Is there an alternative code for this in Mac ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

远山浅 2024-11-13 08:31:30

Mac OS X 上的字体有两个路径(据我所知),/Library/Fonts/System/Library/Fonts

如果您只是寻找字体列表,则可以使用:

java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts()

有点笨拙,因为它创建了一个 GraphicsEnvironment 对象,但它将返回 java.awt.Font 数组 包含代表系统上可用的每种字体的对象。

There are two paths for fonts on Mac OS X (that I know of), /Library/Fonts and /System/Library/Fonts.

If you're just looking for a list of fonts, you can use:

java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts()

A bit heavy handed, since it creates a GraphicsEnvironment object, but it will return an array of java.awt.Font containing an object that represents each font available on the system.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文