我的代码中有这个错误,我是一个初学者,我不知道为什么在其他程序中,点击时执行的动作事件/动作是成功的,但在这个程序中,我使用了相同的模式,它给了我这个错误,有人能帮助我吗?
当我尝试在用户单击login时放置事件时,错误通过createfirstframe类发生
package cinema;
import java.awt.*;
import java.sql.*;
import javax.swing.*;
//Create a simple GUI window
public class createframe {
public static void createfirstframe() {
JFrame Frame1;
Frame1 = new JFrame("Customer");
Frame1.setSize(1000,1000);
Frame1.setLayout(new GridLayout(5, 2));
JLabel login1= new JLabel(" Type your IDs to log in the Cinema interface !");
Frame1.add(login1);
JTextField logintextarea1 = new JTextField(30);
JPasswordField loginpassword1 = new JPasswordField("");
JLabel login = new JLabel("Login customer (pseudo) : ");
JLabel password= new JLabel("password : ");
Frame1.add(login);
Frame1.add(logintextarea1);
Frame1.add(password);
Frame1.add(loginpassword1);
Frame1.add(new JLabel(new ImageIcon("/Users/elouazraouiayoub/Downloads/AtTheMovies.jpg")));
JButton btnGet = new JButton("Log in");
Frame1.add(btnGet);
btnGet.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
Class.forName("com.mysql.jdbc.Driver");
Connection c= DriverManager.getConnection("jdbc:mysql://localhost:8889/test","root","");
Statement stmt =c.createStatement();
String sql="Select * from usersID where Username='"+logintextarea1.getText()+"' and password='"+loginpassword1.getText()+"'";
ResultSet rs =stmt.executeQuery(sql);
if(rs.next())
{
//connexion and checking established
}
else
{
JOptionPane.showMessageDialog(null, "Username/password Error","ERROR", JOptionPane.ERROR_MESSAGE);
logintextarea1.setText(null);
loginpassword1.setText(null);
logintextarea1.requestFocusInWindow();
}
}
catch (Exception e1) {e1.printStackTrace();}
Frame1.setVisible(true);
}});
}
public static void createsecondframe()
{
JFrame Frame2;
Frame2 = new JFrame("employee");
Frame2.setSize(1000,1000);
Frame2.setLayout(new GridLayout(5, 2));
JLabel login2= new JLabel(" Type your employee IDs to log in the Cinema interface !");
Frame2.add(login2);
JTextField logintextarea2 = new JTextField(30);
JPasswordField loginpassword2 = new JPasswordField("");
JLabel login = new JLabel("Login employee (pseudo) : ");
JLabel password= new JLabel("password : ");
Frame2.add(login);
Frame2.add(logintextarea2);
Frame2.add(password);
Frame2.add(loginpassword2);
Frame2.add(new JLabel(new ImageIcon("/Users/elouazraouiayoub/Downloads/AtTheMovies.jpg")));
Frame2.setVisible(true);
}}
这是我的课程表
多谢
尝试导入
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
然后再运行一次。
我想在主类中添加一个功能齐全的按钮 我有一个错误:类型AbstractButton中的方法addActionListener(ActionListener)不适用于参数(JPanel) (我试着把杰帕内尔作为论据)
我试图在一个测试中模拟。我在网上找到了一些人们也这么做的例子。 一个例子来自sping-data-elasticsearch,另一个来自一些教程。 这是我自己的例子。 不幸的是,我看到了一些警告。以下是我得到的: 网络客户。RequestHeaderUrispec是原始类型。对泛型类型WebClient的引用。RequestHeaderUrispec应该参数化 当我更改代码并向添加通配符时,我会收
我已经尝试了网络上提供的所有解决方案,但都无效。请尽快提供帮助。同步错误: 生成文件“C:\Users\AH\U GL\Desktop\apps android commons\apps\Build”。格拉德尔线:149 评估项目“:app”时出现问题。 没有方法的签名:build_bacf6ncg9oj63qiyhi1id1rfi.android()适用于参数类型:(build_bacf6ncg
嗨,我在GAE中的JSP代码面临一个名为“JspWriter类型中的方法print(boolean)不适用于参数(val)”的错误。 在线:
我试图在Apache POI中使用自定义颜色,但遇到了一个小问题。到目前为止,我一直在使用,但作为调色板,它非常单调。因此,使用RGB格式进行颜色选择将有助于我的电子表格看起来更好。 我一直在使用这个问题的答案,因为它从理论上解决了我的问题。然而,我面临着一个非常愚蠢的问题,我真的不知道如何解决。 我收到的错误是: 类型CellStyle中的setFillForegroundColor(short
我得到以下错误当截短一个虚空: 类型Stubber中的(T)不适用于参数(void)时的方法 下面是我的示例代码: 我错过了什么?