1. 在java中当前时间取整到小时如何做, 比如当前时间为下午2点半,想得到一个Date型变量,格式化后显示为:
给时间加个格式:
Date date =new Date(System.currentTimeMillis());
SimpleDateFormat formatter = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss "); String time = formatter.format(date);
System.out.println(time);
这样你要取整的话 , 把回 mm:ss设置为答00:00 就行。
2. Java 获取当前时间的小时(24小时制)
使用new Date()获取时间,通过SimpleDateFormat格式化类对Date进行格式话时间。
具体代码如下:注意HH大写代表24小时制。
输出结果:1510416000000,2017-11-12。方便的实现了string转时间的功能。
3. JAVA:怎样把24小时制转换成12小时制
SimpleDateFormat objSDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strCurrentTime = objSDateFormat.format(Date类型的时告羡间);
注带亩:大写的HH为24小时制,小写的hh为12小时制,当然还可以在ss的后面加上 a,这样可以袜行拍在后面显示上下文:显示效果为“2008-03-24 17:00:14 下午”
4. 用java写一个程序把24小时制的时间转换为12小时制的时间.具体说明内详
importjava.util.Scanner;
{
publicvoidprintException(){
System.out.println("输入时间错误!!程序结束");
}
publicTimeFormatException(){
}
publicvoidprintDate()throwsTimeFormatException{
booleanbStop=true;
Scannerinput=newScanner(System.in);
Stringreg="([0-1][0-9]|2[0-4]):([0-5][0-9])";
while(bStop){
System.out.println("请输入时间:");
Stringstr=input.next();
if(str.matches(reg)){
inthour=Integer.parseInt(str.substring(0,2));
Stringminutes=str.substring(2,5);
if(hour<12)
System.out.println("现在时间是:"+Integer.toString(hour).concat(minutes)+"am");
elseif(hour==12)
System.out.println("现在时间是:"+Integer.toString(hour).concat(minutes)+"pm");
elseif(hour==24)
System.out.println("现在时间是:"+"00".concat(minutes)+"am");
else
System.out.println("现在时间是:"+Integer.toString(hour-12).concat(minutes)+"pm");
}else{
bStop=false;
thrownewTimeFormatException();
}
}
}
publicstaticvoidmain(String[]args){
try{
newTimeFormatException().printDate();
}catch(TimeFormatExceptione){
e.printException();
}
}
}
如果看不懂 尽管问 [email protected]
5. java timestrap 和data类,为什么时间是12小时格式而不是24小时,需要注意什么
Long类型的时间转换为date,可以通过SimpleDateFormat对象对格式进行定义,然后创建一个Date类型的对象封装时间,再通过SimpleDateFormat对象的format(date)方法就可以获取指定的日期格式了。
有了上面的介绍,看看我是怎么封装一个简单的Long转换为Date的函数:
/**
* 把毫秒转化成日期
*@paramdateFormat(日期格式,例如:MM/dd/yyyyHH:mm:ss)
*@parammillSec(毫秒数)
*@return
*/
privateString transferLongToDate(String dateFormat,Long millSec){
SimpleDateFormat sdf =newSimpleDateFormat(dateFormat);
Date date=newDate(millSec);
returnsdf.format(date);
}
3
写一个main函数测试一下我们写的方法:
import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class test { public static void main(String[] args) throws ParseException { // TODO Auto-generated method stub System.out.println(transferLongToDate("MM/dd/yyyy",System.currentTimeMillis())); } /** * 把毫秒转化成日期 * @param dateFormat(日期格式,例如:MM/ dd/yyyy HH:mm:ss) * @param millSec(毫秒数) * @return */ private static String transferLongToDate(String dateFormat,Long millSec){ SimpleDateFormat sdf = new SimpleDateFormat(dateFormat); Date date= new Date(millSec); return sdf.format(date); }}