Is there an option to localize JavaFX FileChooser dialog?
In Swing JFileChooser localization was pretty simple (over UIManager
).
But i can't find similar functionality in JavaFX.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
I don't think you can. From the FileChooser
Javadocs:
Provides support for standard platform file dialogs. These dialogs have look and feel of the platform UI components which is independent of JavaFX.
Since these are native File Chooser dialogs, the text displayed in them will be controlled by the locale of the platform (i.e. the regional settings chosen on the user's machine at the OS level). Note that this is probably what you want anyway, as the user likely has these set the way they want. You could experiment with changing your regional settings and seeing if it changes the file chooser.