通过Java中的Windows 7输入方法自动切换字符宽度

时间:2013-05-27 13:50:46

标签: java swing windows-7 unicode applet

我有几种用于编写Windows 7附带的繁体中文台湾语输入法。此外,所有输入法都可以选择切换字符宽度(单字节/双字节字符)。

  • 中文(繁体) - 新快速
  • 中文(繁体) - ChangJie
  • 中文(繁体) - 快速
  • 中文(繁体) - 拼音
  • 中文(繁体) - 新音标
  • 中文(繁体) - 新常杰

如果我在Java应用程序中选择其中一种输入方法并将字符宽度设置为半角(单字节字符模式),我可以在JTextField中成功输入文本。但是,如果应用程序显示某个对话框(例如JOptionPane)或弹出窗口,则输入方法字符宽度将自动更改为全角(双字节字符模式)。之后,用户必须手动切换到半角字符。

我可以使用Java类“InputContext”以编程方式打开或关闭输入法,但是我无法控制输入法是否设置为全宽/半宽(单/双字节)字符模式。

我想也许可以从Windows输入法设置禁用它,但是没有与字符宽度的自动切换相关的选项。

问题是: 有没有办法处理(停用)自动切换功能?

以下是使用上述输入方法对此进行测试的示例代码:

public class Example implements ActionListener {

    JFrame f = new JFrame("pasod");
    JTextField txt = new JTextField();
    Button btn = new Button("Locale");

    public Example() {

        JPanel panel = new JPanel();
        panel.setLayout(new GridLayout());
        btn.addActionListener(this);
        panel.add(btn);
        panel.add(txt);
        f.add(panel);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.pack();
        f.setSize(800, 100);
        f.setVisible(true);
    }   

    public static void main(String[] args) {
        new Example();              
    }

    public void actionPerformed(ActionEvent arg0) {
        JOptionPane.showMessageDialog(btn, "Neso", "Neso",
                 JOptionPane.INFORMATION_MESSAGE);
    }
}

感谢。

2 个答案:

答案 0 :(得分:1)

好的,我已经了解了Java源代码,寻找突出的东西;

您将JOptionPane.showMessageDialog()此重载调用JOptionPane.showOptionDialog();

public static int showOptionDialog(Component parentComponent,
        Object message, String title, int optionType, int messageType,
        Icon icon, Object[] options, Object initialValue) 
        throws HeadlessException {
        JOptionPane             pane = new JOptionPane(message, messageType,
                                                       optionType, icon,
                                                       options, initialValue);

        pane.setInitialValue(initialValue);
        pane.setComponentOrientation(((parentComponent == null) ?
        getRootFrame() : parentComponent).getComponentOrientation());

        int style = styleFromMessageType(messageType);
        JDialog dialog = pane.createDialog(parentComponent, title, style);

        pane.selectInitialValue();
        dialog.show();    
        //..Result handling code
    }

所以我们研究createDialog();

public JDialog createDialog(String title) throws HeadlessException {
    int style = styleFromMessageType(getMessageType());
    JDialog dialog = new JDialog((Dialog) null, title, true);
    initDialog(dialog, style, null);
    return dialog;
}

所以我们检查JDialog的构造函数,这些都是dialogInit();

protected void dialogInit() {
    enableEvents(AWTEvent.KEY_EVENT_MASK | AWTEvent.WINDOW_EVENT_MASK);
    setLocale( JComponent.getDefaultLocale() );
    setRootPane(createRootPane());
    setRootPaneCheckingEnabled(true);
    if (JDialog.isDefaultLookAndFeelDecorated()) {
        boolean supportsWindowDecorations = 
        UIManager.getLookAndFeel().getSupportsWindowDecorations();
        if (supportsWindowDecorations) {
            setUndecorated(true);
            getRootPane().setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
        }
    }
    sun.awt.SunToolkit.checkAndSetPolicy(this, true);
}

我们在这里找到了setLocale( JComponent.getDefaultLocale() );;

因此无论何时创建JDialog,无论是间接的还是程序的区域设置都重置为默认值,我猜测这包括重置输入设置。

有几种方法可以设置默认的Locale(以编程方式,系统属性或运行时args); Details found here

希望能帮到你

答案 1 :(得分:1)

我做了一个简单的测试:

我打开IE,选择了一个标签,在地址栏中,将中文IME设置为半宽。然后单击另一个选项卡,IME会自动更改为全宽。

所以我认为它与Java没有任何关系。这是一种Windows行为。