这是我的数据库:
日期状态
1343993311 Q
在这里,我必须检查查询当前日期+状态= 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中将时间戳转换为日期。如何使用代码在我的代码中。请帮助我。怎么做????
答案 0 :(得分:0)
您应该在代码中尝试以下内容
DateFormat format = new SimpleDateFormat("yyyy-mm-dd");
Date date = format.parse("1343993311");
此处date
对象将引用java.util.Date
个对象。表示时间戳转换为Date
对象。