gpt4 book ai didi

java - 当我输入旧日期(例如 20/03/1961 (dd/mm/yyyy))时,会存储前一天的值

转载 作者:行者123 更新时间:2023-11-29 07:47:16 26 4
gpt4 key购买 nike

我正在使用 MySQL、Eclipse、GWT java,当我输入旧日期 20/03/1961 (dd/mm/yyyy) 时,存储的值是 19/03/1961。无论我手动输入日期还是使用日期选择器,我都会得到相同的结果(即,它在输入时显示为 20/03/1961,但当我重新显示时,它显示为 19/03/1961)。我检查了数据库(MySQL),它存储为1961-03-19。在数据库中,列定义为日期,排序规则为 utf8_general_ci。

该错误似乎只发生在某些日期范围内。在 12/12/2014 @ 11:24 我通过减半日期进行测试,发现 4/4/1971 出现错误,即 5/4/1971 存储正确,4/4/1971 存储为 3/4/1971。然后我输入了我遇到问题的原始日期,2004 年 3 月 31 日,然后发生了错误(即,它被存储为 2004 年 3 月 30 日)。我一直在尝试各种其他日期,发现 3/4/2007 存储为 2/4/2007,而 4/4/2007 则可以。数学天才可能会找到一个模式。

相关代码为:

客户端:

final DateBox dateBoxDOB = new DateBox();

//dateBoxDOB = new DateBox();
dateBoxDOB.setFormat(new DefaultFormat(DateTimeFormat.getFormat("dd/MM/yyyy")));
flexTable.setWidget(0, 1, dateBoxDOB);
dateBoxDOB.getDatePicker();

java.sql.Date sqlDOB = new java.sql.Date(dateBoxDOB.getValue().getTime());

AsyncCallback<Void> callback = new UpdateHandler<Void>(EditYouthMemberView.this);
rpc.updateYouthMember(cd_ID, textBoxSurname.getText(), textBoxFirstName.getText(), sqlDOB,
imagePath, sqlDateArchived, integerBoxScoutNumber.getValue(), sd_ID, "Cubs",
"Explorer", sqlPackIn, sqlDatePackOut, callback);

服务器端:

public void updateYouthMember(String cd_id, String surname,
String firstname, java.sql.Date dob, String photograph, java.sql.Date archived,
Integer scout_no, String sd_id, String section, String pack, java.sql.Date startDate,
java.sql.Date endDate) {

PreparedStatement ps = null;
PreparedStatement ps2 = null;
// Create connection/statement variables outside of try block
Connection c = null;

String updateWithoutPhoto = ("UPDATE at_cub_details " +
"SET cd_surname = ?, " +
"cd_first_name = ?, " +
"cd_dob = ?, " +
"cd_archived = ?, " +
"cd_scout_no = ? " +
"WHERE cd_id = ?;");

String updateWithPhoto = ("UPDATE at_cub_details " +
"SET cd_surname = ?, " +
"cd_first_name = ?, " +
"cd_dob = ?, " +
"cd_photograph = ?, " +
"cd_archived = ?, " +
"cd_scout_no = ? " +
"WHERE cd_id = ?;");

try {
// Get Connection and Statement from DataSource
c = ds.getConnection();

try {
if (photograph == null) {
// Create a statement and execute the query on it
ps = c.prepareStatement(updateWithoutPhoto);
ps.setString(1, surname);
ps.setString(2, firstname);
ps.setDate(3, (java.sql.Date) dob);
ps.setDate(4, (java.sql.Date) archived);
ps.setInt(5, scout_no);
ps.setString(6, cd_id);

ps.executeUpdate();

// Clean up
ps.close();
}else{
// Create a statement and execute the query on it
ps = c.prepareStatement(updateWithPhoto);
ps.setString(1, surname);
ps.setString(2, firstname);
ps.setDate(3, (java.sql.Date) dob);

File imgfile = new File (photograph);
FileInputStream fis = new FileInputStream(imgfile);
ps.setBinaryStream(4, fis, (int) imgfile.length());

ps.setDate(5, (java.sql.Date) archived);
ps.setInt(6, scout_no);
ps.setString(7, cd_id);

ps.executeUpdate();

// Clean up
ps.close();
}
} catch (SQLException se) {
System.out.println("SQLException in updateYouthMember: " + se.toString());
} catch (Exception e) {
System.out.println("Errors occurred in updateYouthMember: " + e.toString());
}

String updateSectionDetails = ("UPDATE at_section_details " +
"SET sd_section = ?, " +
"sd_pack = ?, " +
"sd_start_date = ?, " +
"sd_end_date = ? " +
"WHERE sd_id = ?;");
try {
// Create a statement and execute the query on it
ps2 = c.prepareStatement(updateSectionDetails);
ps2.setString(1, section);
ps2.setString(2, pack);
ps2.setDate(3, (java.sql.Date) startDate);
ps2.setDate(4, (java.sql.Date) endDate);
ps2.setString(5, sd_id);

ps2.executeUpdate();

// Clean up
ps2.close();
c.close();

} catch (SQLException se) {
System.out.println("SQLException in updateYouthMember - updateSectionDetails: " + se.toString());
} catch (Exception e) {
System.out.println("Errors occurred in updateYouthMember - updateSectionDetails: " + e.toString());
}

} catch (SQLException e1) {
System.out.println("SQLException in updateYouthMember: " + e1.toString());
e1.printStackTrace();

}

finally {

// Ensure connection is closed and returned to the pool, even if errors occur.
// This is *very* important if using a connection pool, because after all the
// connections are used, the application will hang on getConnection(), waiting
// for a connection to become available.
// Any errors from the following closes are just ignored. The main thing is
// that we have definitely closed the connection.
try { if(ps != null) ps.close(); } catch (Exception e) {}
try { if(c != null) c.close(); } catch (Exception e) {}
}
// Done
}

我已经尝试过:

我发现了这个:bugs.mysql.com/bug.php?id=71084。但是,当我使用 ps.setDate(3, (java.sql.Date) dob, java.util.Calendar.getInstance()); 时当我输入 20/03/1961 时,我仍然得到 19/03/1961。

我尝试过:

// create a calendar Locale locale1 = Locale.UK; 
TimeZone tz1 = TimeZone.getTimeZone("UTC+10:00");
Calendar cal1 = Calendar.getInstance(tz1, locale1);
ps.setDate(3, (java.sql.Date) dob, cal1);

这不起作用。

我还尝试了 TimeZone tz1 = TimeZone.getTimeZone("AEST"); 也不起作用。

然后我尝试了 ps.setString(3, dob.toString()); ,这导致 Errors returned in updateYouthMember: java.lang.NullPointerException

非常感谢任何帮助。

最佳答案

这看起来像是时区问题。这里有一些提示:

  1. 如果您将日期存储为字符串,您可能也希望在 GWT 中将其作为字符串处理。它将避免您从长整型转换为日期时遇到的麻烦。

  2. 如果您更喜欢使用 getTime() 来获取日期,请尝试将此数字调整为午夜(请参阅我对此问题的回答:how to create a Java Date object of midnight today and midnight tomorrow?)

GWT 返回中午而不是午夜的时间点。对于某些日期和时区的组合,将日期推后一天可能就足够了。

但这可能还不够 - 您可能需要在将 getTime() 结果转换为 Date 对象之前将其调整为时区偏移量,然后以其他方式使用相同的偏移量在应用中显示日期时 - 同一日期在不同时区的不同时间开始。

  • 或者,您可以使用 getTime() 获取以毫秒为单位的时间,将其存储为以毫秒为单位的时间,然后在显示日期时也将其用作以毫秒为单位的时间。这适用于时间戳等与时区无关的事物。如果时区很重要,您必须记住在哪个时区显示日期 - 某些时区可能是正确的日期,而另一些时区则有 1 天休息时间。
  • 仅当您需要根据应用程序中某处用户的时区调整精确时间时,我才会推荐后两种方法。如果您只需要日期,字符串是一个更简单的解决方案。

    关于java - 当我输入旧日期(例如 20/03/1961 (dd/mm/yyyy))时,会存储前一天的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27415627/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com