我正在尝试添加一个 JLabel,但问题是它要么卡在 jframe 的中间或左侧。
这是我的代码;
public class test extends JFrame{
public test(){
JLabel text = new JLabel("test")
text.setLocation(100,100);
setTitle("Help me");
setSize(500,500);
add(text);
}
}
public class Runner{
public static void main (String[] args){
test a = new test();
}
}