//导入必要的库和包 import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.SQLException; //创建连接 try { Class.forName("com.mysql.jdbc.Driver"); } catch (ClassNotFoundException e) { System.out.println("MySQL JDBC Driver未找到"); e.printStackTrace(); } Connection connection = null; try { connection = DriverManager.getConnection("jdbc:mysql://localhost:3306/yourdatabase", "yourusername", "yourpassword"); } catch (SQLException e) { System.out.println("连接数据库时出错"); e.printStackTrace(); } //准备添加数据的SQL语句 String sql = "INSERT INTO yourtable (column1, column2, column3) VALUES (?, ?, ?)"; //预编译SQL语句 try { PreparedStatement statement = connection.prepareStatement(sql); statement.setString(1, "value1"); statement.setInt(2, 2); statement.setDouble(3, 3.3); //执行SQL语句 statement.executeUpdate(); } catch (SQLException e) { System.out.println("添加数据时出错"); e.printStackTrace(); } //关闭连接 try { connection.close(); } catch (SQLException e) { System.out.println("关闭连接时出错"); e.printStackTrace(); }
以上代码中,大家首先导入了必需的库和包,并创建了一个连接到MySQL数据库的连接。接着,大家准备了要添加数据的SQL语句,并使用预编译语句的方式添加数据到表中。
最后大家需要将数据库的连接关闭,以免占用资源。
通过这篇文章的介绍,您现在已经知道如何使用Java和MySQL将数据添加到数据库中了。希望本篇文章对于您有所帮助!