jbutton と jtextfield と jlabe を含む単純な jframe があります。しかし、それぞれに場所を設定したいときは、移動しないでください!
public class myFrame extends JFrame{
JButton okButton;
JPanel mypanel;
public myFrame(){
okButton=new JButton("OK");
mypanel=new JPanel();
okButton.setLocation(100, 200);
mypanel.add(okButton);
this.add(mypanel);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(500, 400);
setVisible(true);
}
public static void main(String[] args){
new myFrame();
}
}