如何更改java中所有组件的字体

发布于 2024-10-30 01:52:40 字数 134 浏览 0 评论 0原文

我想更改或修改我的所有 JFrame 的字体。

就像有一次我改变字体一样,所有框架字体大小都变成了新的东西。

上次我改变了外观&感觉我的窗户我认为这样可以,但我正在寻找另一种解决方案,如果有的话请为我提供一个例子。

I want to change or modify font of all om my JFrame.

Like just one time I change font and all the frame font size change to new thing.

Previous time I changed look & feel of my window I think that way can, but I am looking for another solution, if any please provide an example for me.

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

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

发布评论

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

评论(2

冷情 2024-11-06 01:52:40

一种可能的解决方案:使用不同的 VM 参数执行代码:

java -Dswing.plaf.metal.controlFont=Tahoma -Dswing.plaf.metal.userFont=Tahoma …

One possible solution: execute your code with different VM parameters:

java -Dswing.plaf.metal.controlFont=Tahoma -Dswing.plaf.metal.userFont=Tahoma …
转身泪倾城 2024-11-06 01:52:40

也许您可以创建一个配置文件(或资源文件),当您想要更改某些内容时,读取该文件并设置值。

资源文件:(当然你可以使用 JSON、XML 或任何你想要的。
这只是一个例子)
字体名称A:San Serif
字体名称B: XXXX

fontSizeA: 20
fontSizeB: 30

backgourdImage………

class StyleProvider{
  …
  public StyleProvider(String yourConfigFilePath){
    /* read it */
  }
  public String getFontName(/* you can write some arguments here*/){
    return something;
  }
  /* other methods */
}

/* your working code */
StyleProvider sp = new StyleProvider("filepath")
font = new Font(sp.getFontName(), Font.PLAIN, sp.getFontSize());

Maybe you can create a config file(or resource file) and when you want to changing something read the file and set values.

resource file:(Of course you can use JSON, XML or anything you want.
This is just a example)
fontNameA: San Serif
fontNameB: XXXX

fontSizeA: 20
fontSizeB: 30

backgourdImage………

class StyleProvider{
  …
  public StyleProvider(String yourConfigFilePath){
    /* read it */
  }
  public String getFontName(/* you can write some arguments here*/){
    return something;
  }
  /* other methods */
}

/* your working code */
StyleProvider sp = new StyleProvider("filepath")
font = new Font(sp.getFontName(), Font.PLAIN, sp.getFontSize());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文