在一个SQL数据库中保存和提取日期数据我们将要使用的下一个类是java.sql.Date,它是java.util.Date的子类但它使用了Java数据库连接(JDBC)方法 。让我们来看一个简单的只有一个表单--LAST_ACCESS的ORACLE数据库,它是用下面的SQL创建的: create table LAST_ACCESS ( LAST_HIT date ); 这个表单只有一个记录,用下面的插入语句创建: insert into LAST_ACCESS values (Sysdate); 表E演示了如何修改和提取LAST_HIT数据库域。 表 E import java.sql.*; import java.text.DateFormat; import java.util.Date; public class DateExample10 { public static void main(String[] args) { // Get a full date formatter. DateFormat dateFormatter = DateFormat.getDateTimeInstance( DateFormat.FULL, DateFormat.FULL); // Get the system date and time. java.util.Date utilDate = new Date(); // Convert it to java.sql.Date java.sql.Date date = new java.sql.Date(utilDate.getTime()); // Display the date before storing. System.out.println(dateFormatter.format(date)); // Save the date to the database. setLastHit(date); // Get the date from the database. Date dateFromDB = getLastHit(); // Display the date from the database. System.out.println(dateFormatter.format(dateFromDB)); } public static void setLastHit(java.sql.Date date) { try { // Load the class. Class.forName("oracle.jdbc.driver.OracleDriver"); // Get a connection. 燙onnection connection = DriverManager.getConnection( // Database URL "jdbc:oracle:thin:@localhost:1521:buzz2", "web_site", // Username "web_site"); // Password try { / Get a prepared statement fromthe connection // specifying the update SQL. PreparedStatement ps = connection.prepareStatement( "update LAST_ACCESS set LAST_HIT="); try { / set the date letting JDBC to the work of // formatting the SQL appropriately. ps.setDate(1, date); // Execute the update statement. int iRowsUpdated = ps.executeUpdate(); System.out.println("Rows updated: " + iRowsUpdated); } finally { ps.close(); } } finally { connection.close(); } } catch (Exception ex) { System.out.println("Error: " + ex.getMessage()); } } public static java.sql.Date getLastHit() { java.sql.Date returnDate = null; try { // Load the driver class. Class.forName("oracle.jdbc.driver.OracleDriver"); // Get the connection. Connection connection = DriverManager.getConnection( "jdbc:oracle:thin:@localhost:1521:buzz2", "web_site", "web_site"); try { / Get the prepared statement specifying the // select SQL. PreparedStatement ps = connection.prepareStatement( "select LAST_HIT from LAST_ACCESS"); try { // Execute the SQL and get the ResultSet object. ResultSet rs = ps.executeQuery(); try { // Retreive the record. if (rs.next()) { // Return the last hit date. returnDate = rs.getDate("LAST_HIT"); System.out.println( "Successfully retrieved last hit."); } else { 燬ystem.out.println("Did not get last hit."); } } finally { rs.close(); } } finally { ps.close(); 爙 } finally { connection.close(); } } catch (Exception ex) { System.out.println("Error: " + ex.getMessage()); } return returnDate; } } 这个例子的输出如下: Friday, October 5, 2001 10:42:34 PM EDT Rows updated: 1 Successfully retrieved last hit. Friday, October 5, 2001 12:00:00 AM EDT 虽然这个例子没有为保存和提取日期数据提供性能上优良的方法,但它确实示范了如何为一条更新和删除语句将Java日期数据转换成SQL日期数据。从一个java.util.Date对象设置Oracle date数据域的过程是由以下的语句处理的: ps.setDate(1, date); 它是我们预定义语句接口java.sql.PreparedStatement.setDate 的一个方法。 这行代码出现在我们的setLastHit方法里。它将Java以微秒为单位的长整型日期值转换成ORACLE的SQL日期格式。当我们能够在getLastHit方法里用java.sql.PreparedStatement.getDate从数据库取得日期数据的时候这种转换就能够完成。 你还应该注意到只有日期被设置了。小时,分钟,秒,和微秒都没有包括在从Java日期数据到SQL日期数据的转换过程中。 结论 一旦你掌握了这些概念,你就应该能够基于系统时间或者一个输入的时间创建日期对象了。另外,你还应该能够使用标准和定制的格式化过程格式化日期数据,将文本的日期数据解析成日期对象,并以多种语言和多种时区显示一个日期数据。最后,你将能够在一个SQL数据库里保存和提取日期值。 |