从属性文件创建菜单 : 菜单 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 菜单屏幕截图 
从属性文件创建菜单
 
//Menus.properties

/*
# The file Menus.properties is the default "Menus" resource bundle.
# As an American programmer, I made my own locale the default.
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.blue.accelerator=alt B

*/

//Menus_fr.properties
/*
# This is the file Menus_fr.properties.  It is the resource bundle for all
# French-speaking locales.  It overrides most, but not all, of the resources
# in the default bundle.
colors.label=Couleurs
colors.red.label=Rouge
colors.green.label=Vert
colors.green.accelerator=control shift V
colors.blue.label=Bleu

*/

//Menus_en_GB.properties
/*
# This is the file Menus_en_GB.properties.  It is the resource bundle for
# British English.  Note that it overrides only a single resource definition
# and simply inherits the rest from the default (American) bundle.
colors.label=Colours


*/

///
/*
 * Copyright (c) 2000 David Flanagan.  All rights reserved.
 * This code is from the book Java Examples in a Nutshell, 2nd Edition.
 * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied.
 * You may study, use, and modify it for any non-commercial purpose.
 * You may distribute it non-commercially as long as you retain this notice.
 * For a commercial use license, or to purchase the book (recommended),
 * visit http://www.davidflanagan.com/javaexamples2.
 */

import java.awt.Color;
import java.awt.Component;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Locale;
import java.util.MissingResourceException;
import java.util.ResourceBundle;

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.KeyStroke;

/** 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[i]
            ".label");
      catch (MissingResourceException e) {
        itemlabel = itemnames[i];
      }

      JMenuItem item = new JMenuItem(itemlabel);

      // Look up an accelerator for the menu item
      try {
        String acceleratorText = bundle.getString(menuname + "."
            + itemnames[i".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[i]);
      }

      // 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(
        "com.davidflanagan.examples.i18n.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(300150)// Set the window size.
    f.setVisible(true)// Pop the window up.
  }
}



           
         
  
Related examples in the same category
1. 简单的菜单简单的菜单
2. 创建弹出菜单创建弹出菜单
3. 创建一个主菜单。
4. 创建一个菜单
5. 创建JMenuBar , JMenu和JMenuItem组件
6. Submenus, checkbox menu items, swapping menus,mnemonics (shortcuts) and action commandsSubmenus, checkbox menu items, swapping menus,mnemonics (shortcuts) and action commands
7. 分离菜单
8. 通过事件类创建一个菜单和工具栏通过事件类创建一个菜单和工具栏
9. 一个简单的例子JPopupMenu一个简单的例子JPopupMenu
10. 复选框菜单项复选框菜单项
11. 菜单和菜单项:加速器和助记符菜单和菜单项:加速器和助记符
12. 一个例子JPopupMenu一个例子JPopupMenu
13. 建造和使用的菜单。建造和使用的菜单。
14. 弹出式菜单和鼠标事件弹出式菜单和鼠标事件
15. 菜单Y菜单Y
16. 菜单X菜单X
17. 操作菜单操作菜单
18. 菜单事件菜单事件
19. 切换菜单项切换菜单项
20. 复选框菜单样本复选框菜单样本
21. 菜单演示4菜单演示4
22. 综合菜单演示综合菜单演示
23. 菜单样本3菜单样本3
24. 如何创建自定义菜单如何创建自定义菜单
25. 单选框菜单项单选框菜单项
26. 菜单事件和复选框菜单菜单事件和复选框菜单
27. 简单的菜单和窗口界面-非国际化简单的菜单和窗口界面-非国际化
28. 使用框架构建一个弹出式菜单使用框架构建一个弹出式菜单
29. 显示菜单和菜单类显示菜单和菜单类
30. JMenu捷径和加速器
31. 级联菜单级联菜单
32. 弹出菜单演示弹出菜单演示
33. 菜单演示菜单演示
34. 菜单布局演示菜单布局演示
35. 菜单事件菜单事件
36. UseActions :菜单UseActions :菜单
37. 弹出式菜单弹出式菜单
38. RadioButton菜单RadioButton菜单
39. 菜单的样子菜单的样子
40. 菜单胶演示菜单胶演示
41. 添加弹出式菜单添加弹出式菜单
42. 改变当前选定的菜单或菜单项事件
43. 菜单项,可以选择或取消
44. 隐藏/显示各种工具栏
45. 使用当前选定的菜单或菜单项
46. 创建一个菜单项,监听其选择状态改变
47. 菜单管理器和变化事件
48. 菜单管理器演示菜单管理器演示
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.