研究一下jdk\demo\jfc\swingset2\src\ToolTipDemo.java的例程,对你有帮助. import javax.swing.*; 
 import javax.swing.event.*; 
 import javax.swing.text.*; 
 import javax.swing.border.*; 
 import javax.swing.colorchooser.*; 
 import javax.swing.filechooser.*; 
 import javax.accessibility.*; 
  
 import java.awt.*; 
 import java.awt.event.*; 
 import java.beans.*; 
 import java.util.*; 
 import java.io.*; 
 import java.applet.*; 
 import java.net.*; 
  
 /** 
  * ToolTip Demo 
  * 
  * @version 1.2 07/22/99 
  * @author Jeff Dinkins 
  */ 
 public class ToolTipDemo extends DemoModule { 
  
     /** 
      * main method allows us to run as a standalone demo. 
      */ 
     public static void main(String[] args) { 
  ToolTipDemo demo = new ToolTipDemo(null); 
  demo.mainImpl(); 
     } 
  
     /** 
      * ToolTipDemo Constructor 
      */ 
     public ToolTipDemo(SwingSet2 swingset) { 
  // Set the title for this demo, and an icon used to represent this 
  // demo inside the SwingSet2 app. 
  super(swingset, "ToolTipDemo", "toolbar/ToolTip.gif"); 
  
  // Set the layout manager. 
  JPanel p = getDemoPanel(); 
  p.setLayout(new BoxLayout(p, BoxLayout.Y_AXIS)); 
  p.setBackground(Color.white); 
  
  // Create a Cow to put in the center of the panel. 
  Cow cow = new Cow(); 
  cow.getAccessibleContext().setAccessibleName(getString("ToolTipDemo.accessible_cow")); 
  
  // Set the tooltip text. Note, for fun, we also set more tooltip text 
  // descriptions for the cow down below in the Cow.contains() method. 
  cow.setToolTipText(getString("ToolTipDemo.cow")); 
  
  // Add the cow midway down the panel 
  p.add(Box.createRigidArea(new Dimension(1, 150))); 
  p.add(cow); 
     } 
  
  
     class Cow extends JLabel { 
  Polygon cowgon = new Polygon(); 
   
  public Cow() { 
      super(createImageIcon("tooltip/cow.gif", getString("ToolTipDemo.bessie"))); 
      setAlignmentX(CENTER_ALIGNMENT); 
  
      // Set polygon points that define the outline of the cow. 
      cowgon.addPoint(3,20);    cowgon.addPoint(44,4); 
      cowgon.addPoint(79,15);   cowgon.addPoint(130,11); 
      cowgon.addPoint(252,5);   cowgon.addPoint(181,17); 
      cowgon.addPoint(301,45);  cowgon.addPoint(292,214); 
      cowgon.addPoint(269,209); cowgon.addPoint(266,142); 
      cowgon.addPoint(250,161); cowgon.addPoint(235,218); 
      cowgon.addPoint(203,206); cowgon.addPoint(215,137); 
      cowgon.addPoint(195,142); cowgon.addPoint(143,132); 
      cowgon.addPoint(133,189); cowgon.addPoint(160,200); 
      cowgon.addPoint(97,196);  cowgon.addPoint(107,182); 
      cowgon.addPoint(118,185); cowgon.addPoint(110,144); 
      cowgon.addPoint(59,77);   cowgon.addPoint(30,82); 
      cowgon.addPoint(30,35);   cowgon.addPoint(15,36); 
  } 
   
  boolean moo = false; 
  boolean milk = false; 
  boolean tail = false; 
  
  // Use the contains method to set the tooltip text depending 
  // on where the mouse is over the cow. 
  public boolean contains(int x, int y) { 
      if(!cowgon.contains(new Point(x, y))) { 
  return false; 
      } 
       
      if((x > 30) && (x < 60) && (y > 60) && (y < 85)) { 
  if(!moo) { 
      setToolTipText("<html><center><font color=blue size=+2>" + 
     getString("ToolTipDemo.moo") + "</font></center></html>"); 
      moo = true; 
      milk = false; 
      tail = false; 
  } 
      } else if((x > 150) && (x < 260) && (y > 90) && (y < 145)) { 
  if(!milk) { 
      setToolTipText("<html><center><font face=AvantGarde size=+1 color=white>" + 
     getString("ToolTipDemo.got_milk") + "</font></center></html>"); 
      milk = true; 
      moo = false; 
      tail = false; 
  } 
      } else if((x > 280) && (x < 300) && (y > 20) && (y < 175)) { 
  if(!tail) { 
      setToolTipText("<html><em><b>" + getString("ToolTipDemo.tail") + "</b></em></html>"); 
      tail = true; 
      moo = false; 
      milk = false; 
  } 
      } else if(moo || milk || tail) { 
  setToolTipText(getString("ToolTipDemo.tooltip_features")); 
  moo = false; 
  tail = false; 
  milk = false; 
      } 
  
      return true; 
  } 
     } 
      
 }

解决方案 »

  1.   

    写了一个.但位置不好控制.前几天看到一个这里的网友写的右键弹出菜单例子.现在我只是改了一下,鼠标监听改成键盘监听.(按向上键可弹出,"."键值不晓得)楼主在自己改改.改好了告诉我一声.import java.awt.*;
    import javax.swing.*;
    import java.awt.Rectangle;
    import javax.swing.BorderFactory;
    import java.awt.event.*;public class MyPopupMenu extends JFrame {
        public MyPopupMenu() {
            try {
                jbInit();
            }
            catch (Exception exception) {
                exception.printStackTrace();
            }
        }    private void jbInit() throws Exception {
            this.getContentPane().setLayout(null);
            jMenuItem1.setText("Open");
            jMenuItem2.setText("Save");
            jPopupMenu1.add(jMenuItem1);
            jPopupMenu1.add(jMenuItem2);
            jTextArea1.setBorder(BorderFactory.createLoweredBevelBorder());
            jTextArea1.setText("jTextArea1");
            jTextArea1.setBounds(new Rectangle(5, 5, 300, 200));        jTextArea1.addKeyListener(new KeyListener(){ public void keyPressed(KeyEvent event){
    int keyCode=event.getKeyCode(); JTextArea jta2;
    jta2=(JTextArea)event.getSource(); if(keyCode==KeyEvent.VK_UP)
    jPopupMenu1.show(jTextArea1,jta2.getSelectionEnd(),jta2.getSelectionEnd());//这里后面两个参数确定弹出菜单的值,但不晓得用哪个方法可以搞定
    } public void keyReleased(KeyEvent event){} public void keyTyped(KeyEvent event){} });
            this.getContentPane().add(jTextArea1);
        }
        public static void main(String[] args) {
            MyPopupMenu myPopupMenu = new MyPopupMenu();
            myPopupMenu.setSize(350, 250);
            myPopupMenu.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            myPopupMenu.show();
        }    JPopupMenu jPopupMenu1 = new JPopupMenu();
        JMenuItem jMenuItem1 = new JMenuItem();
        JMenuItem jMenuItem2 = new JMenuItem();
        JTextArea jTextArea1 = new JTextArea();
    }