MySQL是一個開源的關(guān)系型數(shù)據(jù)庫管理系統(tǒng),它可以處理各種類型的數(shù)據(jù)。Java是一種面向?qū)ο蟮木幊陶Z言,廣泛應用于Web開發(fā)和數(shù)據(jù)處理。我們可以使用Java將信息錄入MySQL表中,下面是使用Java編寫的將信息錄入MySQL表中的示例代碼。
import java.sql.*; public class InsertData { static final String JDBC_DRIVER = "com.mysql.jdbc.Driver"; static final String DB_URL = "jdbc:mysql://localhost/TESTDB"; static final String USER = "username"; static final String PASS = "password"; public static void main(String[] args) { Connection conn = null; Statement stmt = null; try { Class.forName("com.mysql.jdbc.Driver"); System.out.println("Connecting to database..."); conn = DriverManager.getConnection(DB_URL,USER,PASS); System.out.println("Creating statement..."); stmt = conn.createStatement(); String sql = "INSERT INTO Students " + "VALUES (100, 'John', 'Doe', 'john.doe@example.com')"; stmt.executeUpdate(sql); System.out.println("Record inserted successfully"); } catch(SQLException se) { se.printStackTrace(); } catch(Exception e) { e.printStackTrace(); } finally { try { if(stmt!=null) conn.close(); } catch(SQLException se) { } try { if(conn!=null) conn.close(); } catch(SQLException se) { se.printStackTrace(); } } } }
在這個示例代碼中,我們首先導入了java.sql包中的一些類。然后,我們定義了MySQL數(shù)據(jù)庫的JDBC驅(qū)動程序和數(shù)據(jù)庫的URL。接下來,我們定義了數(shù)據(jù)庫的用戶名和密碼。在main方法中,我們使用DriverManager.getConnection()方法連接到MySQL數(shù)據(jù)庫。通過調(diào)用createStatement()方法,我們創(chuàng)建了一個Statement對象。然后,我們定義了一個SQL語句,并通過調(diào)用executeUpdate()方法將數(shù)據(jù)插入到Students表中。如果插入成功,我們將在控制臺輸出消息。
以上就是Java在MySQL中插入數(shù)據(jù)的示例代碼。如果你還想了解更多有關(guān)Java和MySQL的信息,請查閱相關(guān)文獻。