重複の可能性:
タイムスタンプをJavaで日付に変換する
これは私のデータベースです:
日付ステータス
1343993311 Q
- 1343892452 C
- 1343892477P
ここでは、クエリの現在の日付 + ステータス = Q 情報を確認し、カウント値を取得する必要があります。
これは私のコードです:
public class TodayQ {
public int data(){
int count=0;
//count++;
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/pro","root","");
PreparedStatement statement = con.prepareStatement("select * from orders where status='Q' AND date=CURDATE()");
ResultSet result = statement.executeQuery();
while(result.next()) {
// Do something with the row returned.
count++; //if the first col is a count.
}
}
catch(Exception exc){
System.out.println(exc.getMessage());
}
return count;
}
}
disは私の他のクラスです:
public class Demo {
public static void main(String[] args) throws ParseException{
TodayQ obj = new TodayQ();
System.out.println(obj.data());
}
}
ここで、日付を編集する必要があります (yyyy-mm-dd) 形式です。出力が得られましたが、データベースでタイムスタンプを使用したいので、Java でタイムスタンプを日付に変換する方法を教えてください。コード.私を助けてください.どうすればいいですか????