1

データベーステーブルに「2013-09-26」のような日付があります..データベースから返されたデータをカレンダーに変換するだけです.この日付から2日を減算したいので、「2013-09-26」自動的に「2013-09-24」になります。

このメソッドは「 2013-09-26 」の文字列を返します

public String getdate() throws ClassNotFoundException, ReflectiveOperationException, Exception{

try {

        Dbconnection NewConnect = new Dbconnection();
        Connection con = NewConnect.MakeConnect();
        Statement stmt = con.createStatement();
        ResultSet rs =  stmt.executeQuery("select apssent_date from apsent where day_id = 1" ) ;
        Date date  ;
    while(rs.next()){

        date = rs.getDate(1);

         return date.toString() ;
    }

    rs.close();
    stmt.close();
    con.close();
}

    catch (SQLException e){

    }
return null;

}

このメソッドは、getdate()-2 の後に String を返す必要があります。

 public String testDate() throws ClassNotFoundException,
        ReflectiveOperationException, Exception {

    if (getDayId() == 1) {

        DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd");
        Calendar cal = Calendar.getInstance();
        cal.add(Calendar.DATE, -2);

        // java.util.Date date = getdate() ;

        return dateFormat.format(cal.getTime());
    }
      return null; }
4

4 に答える 4

3

私が正しく理解していれば、selectステートメントで1つのステップでそれを行うことができます

SELECT apssent_date - INTERVAL 2 DAY 
  FROM apsent 
 WHERE day_id = 1

これがSQLFiddleのデモです

于 2013-10-03T11:14:15.230 に答える
1

メソッドを少し変更するtestDate()だけで、それを行うことができます。

public static String testDate() throws ClassNotFoundException,
    ReflectiveOperationException, Exception {

    if (getDayId() == 1) {
        DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd");
        Calendar cal = Calendar.getInstance();
        cal.setTime(getdate()); // Calling getDate() method and setting the date before subtracting 2 days.
        cal.add(Calendar.DATE, -2);
        return dateFormat.format(cal.getTime());
    }
    return null;
}

PS:-を返しgetDate()ますString。を返すように変更しDateます。

于 2013-10-03T11:12:13.217 に答える
0
public static String  getDate(String date)
{
DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
try 
{
    Date inputDate = dateFormat.parse(date);

    Calendar cal = Calendar.getInstance();
    cal.setTime(inputDate);

    cal.add(Calendar.DATE, -2);

    return dateFormat.format(cal.getTime());
} 
catch (ParseException e) 
{
    // TODO Auto-generated catch block
    e.printStackTrace();
}

return null;

}

これを

getDate("2013-09-26");

出力を与える

2013-09-24
于 2013-10-03T11:29:06.683 に答える