我是尝试创建Java界面的新手,我想创建一个作为大学项目的一部分。
目前我仍然只是在打开界面,但似乎无法在我的画面上设置背景图像。我已经看过所有可以找到并浏览所有论坛的youtube视频,但似乎仍无法正常工作。我见过的所有例子都没有按钮和文本框已经放在上面所以我不确定这是否是问题,但在我的尝试和捕获'我不断得到图像不存在'即使我已将图像放入正确的文件名。
就像我说我刚接触界面一样,所以我知道它可能非常简单,或者我并没有真正搞砸了但是如果有人可以提供帮助,那将是非常准确的。
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.*;
public class CoopWelcome extends JFrame {
private ImageIcon image1;
private JButton b1;
private JTextField userName;
private static String password = "";
private JPanel backGround;
CoopWelcome() {
setLayout(new FlowLayout());
//creating username textbox
userName = new JTextField("");
userName.setText("Username");
userName.setForeground(Color.GRAY);
userName.setColumns(10);
getContentPane().add(userName);
//creating password textbox
JPasswordField passWord = new JPasswordField(10);
passWord.setEchoChar('*');
passWord.addActionListener(new AL());
getContentPane().add(passWord);
//adding the button and the label to the panel
b1 = new JButton("something");
getContentPane().add(b1);
//getting the image and displaying to the label
}
public static void main(String[] Args) {
//Creating the interface
CoopWelcome gui = new CoopWelcome();
gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
gui.setVisible(true);
gui.pack();
gui.setTitle("The Co-operative");
try {
gui.setContentPane(new JLabel(new ImageIcon(ImageIO.read(new File("img.jpg")))));
} catch (IOException e) {
System.out.println("image doesn't exist");
}
}
static class AL implements ActionListener {
public void actionPerformed(ActionEvent e) {
JPasswordField input = (JPasswordField) e.getSource();
char[] passy = input.getPassword();
String p = new String(passy);
if (p.equals(password)) {
JOptionPane.showMessageDialog(null, "Correct");
} else {
JOptionPane.showMessageDialog(null, "Incorrect");
}
}
}
}
答案 0 :(得分:3)
gui.setContentPane(new JLabel(new ImageIcon(ImageIO.read(new File(“img.jpg”)))));
合理的方法,但问题是默认情况下JLabel不使用布局管理器,您无法轻松地向其添加组件。尝试:
JLabel background = new JLabel(...);
background.setLayout( new BorderLayout() );
gui.setContentPane( background );
答案 1 :(得分:0)
问题现在已经解决了。
我基本上完全重写了我的JFrame和标签和东西,并设法让它工作。 可能仍然非常格式化,但至少它现在起作用了,现在对于将来我更容易知道我可能会出错的地方。
CoopWelcome() {
setLayout (new FlowLayout());
//username field
userName = new JTextField("");
userName.setText("Username");
userName.setForeground(Color.GRAY);
userName.setColumns(10);
getContentPane().add(userName);
//password field
JPasswordField passWord = new JPasswordField(10);
passWord.setEchoChar('*');
passWord.addActionListener(new AL());
getContentPane().add(passWord);
//button
b1 = new JButton("something");
getContentPane().add(b1);
//frame
setSize(500,600);
setVisible(true); setLayout(new BorderLayout());
JLabel background=new JLabel(new ImageIcon("img.jpg"));
add(background);
background.setLayout(new FlowLayout());
}
public static void main(String[] Args){
new CoopWelcome();
}
答案 2 :(得分:-1)
JFrame f = new JFrame();
f.setLayout(new BorderLayout());
f.setContentPane(new JLabel(new ImageIcon("someImage.png")));
f.setSize(300,300);
f.setSize(301,301); //just a refresh