请教:如何使增加在JPanel中的不同长度的JList顶部对齐?

如题:如何使增加在JPanel中的不同长度的JList顶部对齐,而非垂直居中对齐?

示例代码如下:
import javax.swing.JFrame;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;

public class testPanel extends JPanel {

public testPanel(){
super();
}

public static void main(String[] args){
JFrame frame = new JFrame();
JPanel panel = new testPanel();
panel.add(new JList(webSites1));
panel.add(new JList(webSites2));
panel.add(new JList(webSites3));
JScrollPane pane = new JScrollPane(panel);
frame.getContentPane().add(pane);
frame.setSize(800, 600);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}


static String webSites1[] = {
        "1About Portal", "AltaVista Search", "Amazon Shopping", "Andale Shopping", "Any Day Calendar", "AOL Instant Messager", "Ask Jeeves", "Auctions", "BigStep Small Business", "BizRate Surveys",
        "BizTravel", "Brittanica", "C|Net Technology", "Carnegie Mellon University", "CBS Sportsline", "CenterBeam Business", "Charles Schwab", "Chumbo Computer Shopping", "DealTime Shopping", "Deep Canyon Research",
        "Deja Opinions", "Dell Computer", "DevEdge Web Development", "DirectHit Search", "Discovery Channel for Kids", "Disney", "eBay Auctions", "eFax", "eHobbies", "eHow Do I ...?",
    };

static String webSites2[] = {
        "2PowWow Instant Messaging", "Productopia Shopping", "Quicken", "RealNetworks Streaming Media", "Remarq Collaboration Services", "Royal Institute of Technology", "Scour Media Search", "See U There Organizing", "Service 911 Computer Help", "SlashDot",
        "SmartAge Business", "Stamps", "Super Family Exchange", "Surf Monkey Kids Channel", "Swedish Institute of Computer Science", "Talk City Online Communities", "TD Waterhouse", "The Street Financial", "Topica Mailing Lists", "University of Maryland",
       
    };

static String webSites3[] = {
        "2PowWow Instant Messaging", "Productopia Shopping", "Quicken", "RealNetworks Streaming Media", "Remarq Collaboration Services", "Royal Institute of Technology", "Scour Media Search", "See U There Organizing", "Service 911 Computer Help", "SlashDot",
        "SmartAge Business", "Stamps", "Super Family Exchange", "Surf Monkey Kids Channel", "Swedish Institute of Computer Science", "Talk City Online Communities", "TD Waterhouse", "The Street Financial", "Topica Mailing Lists", "University of Maryland",
        "Brittanica", "C|Net Technology",
    };
}

你可能感兴趣的:(C++,c,.net,swing,Exchange)