2014-01-25 56 views
0

可能我有我的flowLayout的問題,它將會是錯誤。我該如何解決請幫助我。有錯誤flowLayout

看來錯誤無法解析符號類FlowLayout。

import java.io.*; 
import javax.swing.*; 
public class qwe extends JFrame 
{ 
    private JButton but; 
    private JLabel lab; 
    private JTextField tex; 

    public qwe() 
    { 
     lab = new JLabel("I am a label"); 
     add(lab); 

     tex = new JTextField(15); 
     add(tex); 

     but = new JButton("Click me!"); 
     add(but); 
    } 

    public static void main(String args []) 
    { 
     qwe gui = new qwe(); 
     gui.setLayout(new FlowLayout()); 
     gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
     gui.setSize(200,125); 
     gui.setVisible(true); 
    } 
} 
+0

很可能FlowLayout類未在您的類路徑中設置。 –

+0

@SasiKathimanda我該怎麼做? – Batusai

+0

你真的想擴展一個JFrame?爲什麼不創建新的JFrame呢。 –

回答

0

需要導入的FlowLayout類 import java.awt.FlowLayout;
同時,我有一個提醒你:小心
手錶YOUT編程邏輯。你必須設置你的qwe框架的佈局,然後添加其他組件。

+0

線程「main」中的java.lang錯誤異常先生。 – Batusai

+0

請給我完整的錯誤跟蹤 – Wazani