gpt4 book ai didi

java - Swing 组件如何考虑我的默认区域设置?

转载 作者:行者123 更新时间:2023-12-02 01:14:35 25 4
gpt4 key购买 nike

我的默认区域设置是法语,但我的应用程序中的组件仍然是英语。

System.out.println(UIManager.getLookAndFeelDefaults().getDefaultLocale()); // => fr_FR
System.out.println(System.getProperty("user.language")); // => fr

例如,我的JFileChooser:

JFileChooser

有什么问题吗?有没有办法强制组件语言值?

我使用的是 Java 11、Eclipse、Windows 7。

最佳答案

JFileChooser 用作内容 Pane sun.swing.FilePane。如果您看一下 this classinstallDefaults() 方法你会发现以下评论:

 // TODO: On windows, get the following localized strings from the OS

这意味着它尚未实现(而且我认为它永远不会实现)。

因此,您唯一能做的(不幸的是)就是使用 UIManager 键手动更改它们:

FileChooser.viewMenuLabelText
FileChooser.refreshActionLabelText
FileChooser.newFolderActionLabelText
FileChooser.listViewActionLabelText
FileChooser.detailsViewActionLabelText
FileChooser.fileSizeKiloBytes
FileChooser.fileSizeMegaBytes
FileChooser.fileSizeGigaBytes
FileChooser.renameErrorTitleText
FileChooser.renameErrorText
FileChooser.renameErrorFileExistsText
FileChooser.lookInLabelText
FileChooser.fileNameLabelText
FileChooser.filesOfTypeLabelText
FileChooser.upFolderToolTipText
FileChooser.newFolderToolTipText
FileChooser.viewMenuButtonToolTipText
FileChooser.saveButtonText
FileChooser.openButtonText
FileChooser.cancelButtonText
FileChooser.updateButtonText
FileChooser.helpButtonText
FileChooser.directoryOpenButtonText
FileChooser.saveButtonToolTipText
FileChooser.openButtonToolTipText
FileChooser.cancelButtonToolTipText
FileChooser.updateButtonToolTipText
FileChooser.helpButtonToolTipText
FileChooser.directoryOpenButtonToolTipText
FileChooser.saveDialogTitleText
FileChooser.openDialogTitleText

例如:

//google translate :)
UIManager.put("FileChooser.newFolderActionLabelText", "créer un nouveau dossier");

还有方法JFileChoose#setApproveButtonText ,但我认为这不能满足您的需求。

关于java - Swing 组件如何考虑我的默认区域设置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58873985/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com