阅读背景:

java Swing中对于JList控件的使用(一)

来源:互联网 
 
package com.robert;

import javax.swing.*;
import java.awt.*;

/**
 * Created by IntelliJ IDEA.
 * User: Administrator
 * Date: 11-11-12
 * Time: 下午7:14
 * To change this template use File | Settings | File Templates.
 */
public class ListTest {
    public static void main(String args[])
    {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                JFrame frame = new ListFrame();
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setVisible(true);
            }
        });
    }
}
package com.robert;

import javax.swing.*;



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: