16

我尝试在我的 Swing 应用程序中在运行时更改语言环境。
但我无法弄清楚它应该如何工作,或者没有总体规划?

我只能想到两个选择:
1. 重启应用,不是最好的用户体验。
2.创建一个可以注册/注销组件的本地化管理器,在更改时它只是迭代所有组件并更改文本。

1和2都觉得尴尬。

其他信息:
目前方向不是目标。
应用程序被混淆了。

例子:

LocRes_en.properties:

    text1 = 英文文本

LocRes_ja.properties

    text1 = 日文文本

ChangeLocale.java:

    导入 java.awt.EventQueue;
    导入 java.awt.FlowLayout;
    导入 java.awt.event.ActionEvent;
    导入 java.awt.event.ActionListener;
    导入 java.util.Locale;
    导入 java.util.ResourceBundle;

    导入 javax.swing.JButton;
    导入 javax.swing.JFrame;
    导入 javax.swing.JLabel;

    公共类 ChangeLocale {

        私有 JFrame 框架;

        公共静态无效主要(字符串[]参数){
            EventQueue.invokeLater(new Runnable() {
                公共无效运行(){
                    尝试 {
                        ChangeLocale 窗口 = new ChangeLocale();
                        window.frame.setVisible(true);
                    } 捕捉(异常 e){
                        e.printStackTrace();
                    }
                }
            });
        }

        公共更改区域设置(){
            初始化();
        }

        私人无效初始化(){
            框架 = 新的 JFrame();
            frame.setBounds(100, 100, 450, 300);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            FlowLayout flowLayout = new FlowLayout(FlowLayout.CENTER, 5, 5);
            frame.getContentPane().setLayout(flowLayout);

            JButton btnChangeLoc = new JButton("更改语言环境");
            frame.getContentPane().add(btnChangeLoc);

            final JLabel lblLabel1 = new JLabel("新标签");
            frame.getContentPane().add(lblLabel1);
            Locale.setDefault(new Locale("en"));
            ResourceBundle r = ResourceBundle.getBundle("LocRes");
            lblLabel1.setText(r.getString("text1"));

            btnChangeLoc.addActionListener(new ActionListener() {
                公共无效actionPerformed(ActionEvent e){
                    Locale.setDefault(new Locale("ja"));
                    ResourceBundle r = ResourceBundle.getBundle("LocRes");
                    // 手动遍历所有组件 :(
                    lblLabel1.setText(r.getString("text1"));
                    //
                }
            });
        }
    }
4

4 回答 4

7

我已经使用 ResourceBundles 和EventBus实现了这一点。

更改区域设置时,EventBus 会触发一个localeChangedEvent. 所有JFrame具有本地化字符串的窗口都必须订阅此事件。他们还必须实现一个changeLocale()在收到事件时执行的方法。

在此方法中,所有字符串都将更新为当前语言环境。

public void changeLocale(ResourceBundle rb) {
    lblLabel1.setText(rb.getString("text1"));
    lblLabel2.setText(rb.getString("text2"));
    ...
}
于 2012-10-31T06:43:57.717 回答
4

您可以尝试LocaleChangeListener接口 -

在 Swing 中运行时更改语言环境

于 2012-10-31T06:43:21.767 回答
4

GUI使用支持的语言定义一个和一个组合框。添加一个ItemListener这样当组合框更改时,文本会更新。

LanguageGUIClient.java:

import javax.swing.*;

public class LanguageGUIClient
{
    public static void main(String[] arguments) throws Exception
    {
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

        SwingUtilities.invokeLater(() ->
        {
            LanguageGUI languageGUI = new LanguageGUI();
            languageGUI.setVisible(true);
        });
    }
}

语言GUI.java:

import javax.swing.*;
import java.util.Locale;
import java.util.ResourceBundle;

public class LanguageGUI extends JFrame
{
    public static ResourceBundle resourceBundle;

    private JPanel rootPanel;
    private JComboBox<Locale> languageComboBox;
    private JLabel languageLabel;

    public LanguageGUI()
    {
        configureFrameProperties();
    }

    private void configureFrameProperties()
    {
        add(rootPanel);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        setLocationRelativeTo(null);
        languageComboBox.addItem(Locale.US);
        languageComboBox.addItem(Locale.GERMANY);
        languageComboBox.addItem(Locale.FRANCE);
        setTexts();
        languageComboBox.addItemListener(itemEvent -> setTexts());
        setSize(300, 100);
    }

    private void setTexts()
    {
        Locale locale = languageComboBox.getItemAt(languageComboBox.getSelectedIndex());
        resourceBundle = ResourceBundle.getBundle("Bundle", locale);
        setTitle(resourceBundle.getString("application.title"));
        languageLabel.setText(resourceBundle.getString("language") + ":");
        languageComboBox.setToolTipText(resourceBundle.getString("language.tooltip"));
    }
}

请注意,我正在使用IntelliJ's form designer,所以.form文件内容也是必要的。

LanguageGUI.form:

<?xml version="1.0" encoding="UTF-8"?>
<form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="LanguageGUI">
  <grid id="27dc6" binding="rootPanel" layout-manager="GridLayoutManager" row-count="2" column-count="2" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1">
    <margin top="0" left="0" bottom="0" right="0"/>
    <constraints>
      <xy x="20" y="20" width="500" height="400"/>
    </constraints>
    <properties/>
    <border type="none"/>
    <children>
      <component id="eb651" class="javax.swing.JComboBox" binding="languageComboBox">
        <constraints>
          <grid row="0" column="1" row-span="1" col-span="1" vsize-policy="0" hsize-policy="2" anchor="8" fill="1" indent="0" use-parent-layout="false"/>
        </constraints>
        <properties>
          <toolTipText value=""/>
        </properties>
      </component>
      <vspacer id="977c1">
        <constraints>
          <grid row="1" column="1" row-span="1" col-span="1" vsize-policy="6" hsize-policy="1" anchor="0" fill="2" indent="0" use-parent-layout="false"/>
        </constraints>
      </vspacer>
      <component id="e59f" class="javax.swing.JLabel" binding="languageLabel">
        <constraints>
          <grid row="0" column="0" row-span="1" col-span="1" vsize-policy="0" hsize-policy="0" anchor="8" fill="0" indent="0" use-parent-layout="false"/>
        </constraints>
        <properties>
          <text value=""/>
        </properties>
      </component>
    </children>
  </grid>
</form>

此外,您需要在资源目录中创建相应的资源包文件:

结果是GUI带有一个组合框,可让您立即更改语言:

于 2017-06-28T23:46:05.800 回答
2

我曾经做过类似的事情。虽然我的任务更简单:这是一个系统托盘应用程序,所以我只需要更改菜单项文本。

但在你的情况下,我认为这是可行的。首先,避免在您的 GUI 层中使用硬编码字符串。创建更改语言环境的类,然后迭代所有可见框架,并深入到所有面板和组件并更改写在它们上的文本。我能想到的唯一问题是在画布上绘制的文本。

于 2012-10-31T06:38:21.537 回答