如何从主类加载Java GUI类?

6

我刚开始学习Java用户界面编程。

如何在Java的主类中调用一个用户界面类?

public static void main(String[] args) {
    // TODO code application logic here
    FileExtractorGUI gui = new FileExtractorGUI();
    gui.setVisible(true);
}

基本上,
FileExtractorGUI is a gui class. 

当我运行程序时,如何加载GUI界面。目前运行代码时没有任何反应。

GUI类

package fileextractor;

import javax.swing.JOptionPane;

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
/**
 *
 * @author 
 */
public class FileExtractorGUI extends javax.swing.JPanel {

    /**
     * Creates new form FileExtractorGUI
     */
    public FileExtractorGUI() {
        initComponents();
    }

    /**
     * This method is called from within the constructor to initialize the form.
     * WARNING: Do NOT modify this code. The content of this method is always
     * regenerated by the Form Editor.
     */
    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        SourceField = new javax.swing.JTextField();
        jLabel1 = new javax.swing.JLabel();
        DestinationField = new javax.swing.JTextField();
        jLabel2 = new javax.swing.JLabel();
        Extract = new javax.swing.JButton();

        SourceField.setText("SourceField");
        SourceField.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                SourceFieldActionPerformed(evt);
            }
        });

        jLabel1.setText("SourceFolder");

        DestinationField.setText("DestinationField");

        jLabel2.setText("DestinationFolder");

        Extract.setText("Extract");
        Extract.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                ExtractActionPerformed(evt);
            }
        });

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
        this.setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addContainerGap()
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(jLabel1)
                        .addGap(38, 38, 38)
                        .addComponent(SourceField, javax.swing.GroupLayout.PREFERRED_SIZE, 208, javax.swing.GroupLayout.PREFERRED_SIZE))
                    .addGroup(layout.createSequentialGroup()
                        .addComponent(jLabel2)
                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 24, Short.MAX_VALUE)
                        .addComponent(DestinationField, javax.swing.GroupLayout.PREFERRED_SIZE, 208, javax.swing.GroupLayout.PREFERRED_SIZE)))
                .addGap(74, 74, 74))
            .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                .addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
                .addComponent(Extract)
                .addContainerGap())
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGroup(layout.createSequentialGroup()
                .addGap(26, 26, 26)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(SourceField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addComponent(jLabel1))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
                    .addComponent(DestinationField, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addComponent(jLabel2))
                .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 194, Short.MAX_VALUE)
                .addComponent(Extract)
                .addContainerGap())
        );
    }// </editor-fold>                        

    private void SourceFieldActionPerformed(java.awt.event.ActionEvent evt) {                                            
        // TODO add your handling code here:
    }                                           

    private void ExtractActionPerformed(java.awt.event.ActionEvent evt) {                                        
        // TODO add your handling code here:
        String src = SourceField.getText();
        String dest = DestinationField.getText();
        CopyDirectoryExample copy = new CopyDirectoryExample();
        copy.extract(src, dest);
        JOptionPane.showMessageDialog(null, "Extracted!");
    }                                       


    // Variables declaration - do not modify                     
    private javax.swing.JTextField DestinationField;
    private javax.swing.JButton Extract;
    private javax.swing.JTextField SourceField;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JLabel jLabel2;
    // End of variables declaration                   
}

根据评论中的要求,我已经上传了GUI类代码


显示 FileExtractorGUI 类的内容。 - Darshan Lila
您需要添加一个顶级容器,并将您的UI作为子元素放入到这个顶级容器中。请参见 http://docs.oracle.com/javase/tutorial/uiswing/components/toplevel.html - Andreas Fester
1
你应该将面板放置在 JFrame 中,然后可以设置其可见性。此外,你应该始终在事件分派线程中创建和访问 Swing 组件,如此处所示。 - kiheru
4个回答

11
public static void main(String[] args) {    
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            FileExtractorGUI gui = new FileExtractorGUI();
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add(gui);
            frame.pack();
            frame.setVisible(true);
        }
    });
}

2

由于FileExtractorGUI扩展了JPanel,因此无法显示。每个组件必须JFrameWindow的子级。

请更改以下行:

public class FileExtractorGUI extends javax.swing.JPanel

为了

public class FileExtractorGUI extends JFrame

2
首先实例化一个JFrame,然后用你的面板填充它。
来自doc
//1. Create the frame.
JFrame frame = new JFrame("YouFrame");
//2. Optional: What happens when the frame closes?
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//3. Create your panel and put it in the frame.
frame.getContentPane().add(new FileExtractorGUI(), BorderLayout.CENTER);
//4. Size the frame.
frame.pack();
//5. Show it.
frame.setVisible(true);

1
尝试创建一个JFrame并添加面板。
        FileExtractorGUI gui = new FileExtractorGUI();

        JFrame jf=new JFrame();
        jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        jf.setSize(500, 500);
        jf.add(gui);
        jf.setVisible(true);

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接