Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
533 views
in Technique[技术] by (71.8m points)

java - How to localize JavaFX FileChooser dialog?

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...