我想定位我放在 JLabel 中的图像。这是我的代码:
public Main() {
setLayout (new FlowLayout());
image = new ImageIcon(getClass().getResource("title.gif"));
image1 = new JLabel(image);
image1.setAlignmentX(400);
image1.setAlignmentY(400);
add(image1);
}
它显示图像,但线条
image1.setAlignmentX(400);
image1.setAlignmentY(400);
不要做任何事情。我是Java新手,任何帮助表示赞赏。
(我会很感激一个例子。)