Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 455|回复: 0

[Java基础知识]简单的国际化菜单

[复制链接]
  • TA的每日心情
    开心
    2021-3-12 23:18
  • 签到天数: 2 天

    [LV.1]初来乍到

    发表于 2014-9-30 21:46:52 | 显示全部楼层 |阅读模式




      
       
       
         
       

       
       
      
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Locale;
    import java.util.ResourceBundle;
    import java.util.MissingResourceException;

    /** A convenience class to automatically create localized menu panes */
    public class SimpleMenu {
         /** The convenience method that creates menu panes */
         public static JMenu create(ResourceBundle bundle, String menuname, String[] itemnames,
            ActionListener listener)
         {
             // Get the menu title from the bundle.  Use name as default label.
             String menulabel;
             try { menulabel = bundle.getString(menuname + ".label"); }
             catch(MissingResourceException e) { menulabel = menuname; }

             // Create the menu pane.
             JMenu menu = new JMenu(menulabel);  

             // For each named item in the menu.
             for(int i = 0; i < itemnames.length; i++) {
                 // Look up the label for the item, using name as default.
                 String itemlabel;
                 try {
                   itemlabel =bundle.getString(menuname+"."+itemnames+".label");
        }catch (MissingResourceException e) { itemlabel = itemnames; }
          
         JMenuItem item = new JMenuItem(itemlabel);

                 // Look up an accelerator for the menu item
                try {
                    String acceleratorText =bundle.getString(menuname+"."+itemnames+".accelerator");
                    item.setAccelerator(KeyStroke.getKeyStroke(acceleratorText));
      }catch (MissingResourceException e) {}
          
                 // Register an action listener and command for the item.
                 if (listener != null) {
                     item.addActionListener(listener);
                     item.setActionCommand(itemnames);
                 }
          
                 // Add the item to the menu.
                 menu.add(item);
             }

             // Return the automatically created localized menu.
             return menu;
         }
          
         /** A simple test program for the above code */
         public static void main(String[] args) {
             // Get the locale: default, or specified on command-line
             Locale locale;
             if (args.length == 2) locale = new Locale(args[0], args[1]);
             else locale = Locale.getDefault();
             // Get the resource bundle for that Locale.  This will throw an
             // (unchecked) MissingResourceException if no bundle is found.
             ResourceBundle bundle =ResourceBundle.getBundle("Menus",locale);

             // Create a simple GUI window to display the menu with
             final JFrame f = new JFrame("SimpleMenu: " +   // Window title
                                   locale.getDisplayName(Locale.getDefault()));
             JMenuBar menubar = new JMenuBar();         // Create a menubar.
             f.setJMenuBar(menubar);                    // Add menubar to window

             // Define an action listener for that our menu will use.
             ActionListener listener = new ActionListener() {
                         public void actionPerformed(ActionEvent e) {
         String s = e.getActionCommand();
         Component c = f.getContentPane();
         if (s.equals("red")) c.setBackground(Color.red);
         else if (s.equals("green")) c.setBackground(Color.green);
         else if (s.equals("blue")) c.setBackground(Color.blue);
                         }
             };
             // Now create a menu using our convenience routine with the resource
             // bundle and action listener we"ve created
             JMenu menu = SimpleMenu.create(bundle, "colors", new String[] {"red", "green", "blue"},
            listener);

             // Finally add the menu to the GUI, and pop it up
             menubar.add(menu);           // Add the menu to the menubar
             f.setSize(300, 150);         // Set the window size.
             f.setVisible(true);          // Pop the window up.
           }
    }

    运行:
    java SimpleMenu
    或:
    java SimpleMenu  en us
      附属性文件: Menus_en_US.properties
    colors.label=Colors
    colors.red.label=red
    colors.red.accelerator=alt R
    colors.green.label=green
    colors.green.accelerator=alt G
    colors.blue.label=blue
    colors.bule.accelerator=alt B

    Menus_zh_CN.properties

    colors.label=u989cu8272
    colors.red.label=u7ea2
    colors.red.accelerator=alt R
    colors.green.label=u7eff
    colors.green.accelerator=alt G
    colors.blue.label=u5170
    colors.blue.accelerator=alt B  

      
      
       
       

         
       

         
       
      


    源码下载:http://file.javaxxz.com/2014/9/30/214652000.zip
    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

    GMT+8, 2024-5-13 21:06 , Processed in 0.384467 second(s), 46 queries .

    Powered by Discuz! X3.4

    © 2001-2017 Comsenz Inc.

    快速回复 返回顶部 返回列表