java 中,String time="2012-03-12 12:03:23" 我要获取该字符串里面的时分秒,注:不要截取字符,求方法,

java 中,String time="2012-03-12 12:03:23" 我要获取该字符串里面的时分秒,注:不要截取字符,求方法,,第1张

DateFormat df = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");

String time="2012-03-12 12:03:23";

Date date = dfparse(time);

Calendar calendar = CalendargetInstance();

calendarsetTime(date);

calendarget(CalendarYEAR);

calendarget(CalendarMONTH);

calendarget(CalendarDAY_OF_YEAR);

calendarget(CalendarHOUR_OF_DAY);

calendarget(CalendarMINUTE);

calendarget(CalendarSECOND);

推荐你看一下API 在那上面都有相关方法的

//这是通过网络获取北京时间的方法

javautilLocale locale=javautilLocaleCHINA; //这是获得本地中国时区

String pattern = "yyyy-MM-dd kk:mm:ss zZ";//这是日期格式

javatextSimpleDateFormat df = new javatextSimpleDateFormat(pattern,locale);//设定日期格式

javautilDate date = new javautilDate();

javanetURL url=new URL(">

您这还挺神奇的。如果用java后台获取到时间,然后传到jsp页面。

还得动态不停的走,这传输的多频繁啊?我确实没见过

建议你找找javascript的代码。有很多的。

给出一种

function getCustomTime()

{

var nowtime=new Date();

var hours=nowtimegetHours();

hours=hours>9hours:"0"+hours;

var minutes=nowtimegetMinutes();

minutes=minutes>9minutes:"0"+minutes;

var disptime=hours+":"+minutes;

documentgetElementById("hourminutes")innerHTML=disptime;

setTimeout("getCustomTime()",1000);

}

function getCustomMonth(){

time=new Date();

year=timegetYear();

month=timegetMonth()+1;

month=month>9month:"0"+month;

day=timegetDate();

day=day>9day:"0"+day;

var disptime=year+"/"+month+"/"+day+'星期'+'日一二三四五六'charAt(timegetDay());

documentgetElementById("xq")innerHTML=disptime;

setTimeout("getCustomMonth()",1000);

}

然后再你需要的地方引用这两个函数就可以了

连接上数据库,向数据库发送“select extract (hour from systimestamp),extract(minute from systimestamp),extract(second from systimestamp) from dual”这条SQL语句。其中hour是小时,minute是分钟,second是秒钟。

那你就用long millis=SystemgetCurrentTimeMillis()这个得到的值是从1970 年 1 月 1 日午夜之间到当前时刻的时间差(以毫秒为单位测量)。

1秒=1000毫秒;然后1分钟=60秒,后面的就不用我说了吧!你照这些数去一个一个除,就可以分别得到现在的年月日时分秒毫秒了。思路就是这样了,具体代码还是自己写吧!

package util;

import javamathBigDecimal;

import javatextParseException;

import javatextSimpleDateFormat;

import javautilCalendar;

import javautilDate;

/

获取系统时间

/

public class DateUtil {

/ 日志对象 /

// private static Logger logger = LoggergetLogger(SystemUtilclass);

/ 获取年份 /

public static final int YEAR = 1;

/ 获取年月 /

public static final int YEARMONTH = 2;

/ 获取年月日 /

public static final int YEARMONTHDAY = 3;

/ 获取年月日,小时 /

public static final int YMD_HOUR = 4;

/ 获取年月日,小时,分钟 /

public static final int YMD_HOURMINUTE = 5;

/ 获取年月日,时分秒 /

public static final int FULL = 6;

/ 获取年月日时分秒 格式:yyyyMMddHHmmss /

public static final int UTILTIME = 7;

/

根据指定时间格式类型得到当前时间

@param type

时间类型

@return String 字符串时间

/

public static synchronized String getCurrentTime(int type) {

String format = getFormat(type);

SimpleDateFormat timeformat = new SimpleDateFormat(format);

Date date = new Date();

return timeformatformat(date);

}

/

返回当前系统时间的年月日

@return

/

public static synchronized String getCurrentTime() {

SimpleDateFormat timeformat = new SimpleDateFormat("yyyy-MM-dd");

Date date = new Date();

return timeformatformat(date);

}

/

根据参数格式,格式化当前日期

@param format

@return

/

public static synchronized String getDateString(String format) {

SimpleDateFormat timeformat = new SimpleDateFormat(format);

Date date = new Date();

return timeformatformat(date);

}

/

根据指定时间格式类型,格式化时间格式

@param type

时间格式类型

@return

/

private static String getFormat(int type) {

String format = "";

if (type == 1) {

format = "yyyy";

} else if (type == 2) {

format = "yyyy-MM";

} else if (type == 3) {

format = "yyyy-MM-dd";

} else if (type == 4) {

format = "yyyy-MM-dd HH";

} else if (type == 5) {

format = "yyyy-MM-dd HH:mm";

} else if (type == 6) {

format = "yyyy-MM-dd HH:mm:ss";

} else if (type == 7) {

format = "yyyyMMddHHmmss";

} else {

throw new RuntimeException("日期格式参数错误");

}

return format;

}

public static int getYear(String dateString) {

SimpleDateFormat dd = new SimpleDateFormat("yyyy-MM-dd");

Date date = null;

try {

date = ddparse(dateString);

Calendar cal = CalendargetInstance();

calsetTime(date);

return calget(CalendarYEAR);

} catch (Exception e) {

throw new RuntimeException(e);

}

}

public static int getMonth(String dateString) {

SimpleDateFormat dd = new SimpleDateFormat("yyyy-MM-dd");

Date date = null;

try {

date = ddparse(dateString);

Calendar cal = CalendargetInstance();

calsetTime(date);

return calget(CalendarMONTH)+1;

} catch (Exception e) {

throw new RuntimeException(e);

}

}

public static int getDay(String dateString) {

SimpleDateFormat dd = new SimpleDateFormat("yyyy-MM-dd");

Date date = null;

try {

date = ddparse(dateString);

Calendar cal = CalendargetInstance();

calsetTime(date);

return calget(CalendarDAY_OF_MONTH);

} catch (Exception e) {

throw new RuntimeException(e);

}

}

public static Date StringToDate(String dateStr, String formatStr) {

SimpleDateFormat dd = new SimpleDateFormat(formatStr);

Date date = null;

try {

date = ddparse(dateStr);

} catch (ParseException e) {

eprintStackTrace();

}

return date;

}

/

当前日期和参数日期距离的小时数 日期格式:yyyy-MM-dd HH:mm:ss

@param date

@return

/

public static double getHours(String date) {

SimpleDateFormat timeformat = new SimpleDateFormat(

"yyyy-MM-dd HH:mm:ss");

try {

Date d = new Date();

Date d1 = timeformatparse(date);

long temp = dgetTime() - d1getTime();

double f = temp / 3600000d;

BigDecimal b = new BigDecimal(f);

double f1 = bsetScale(2, BigDecimalROUND_HALF_UP)doubleValue();

return f1;

} catch (Exception e) {

eprintStackTrace();

throw new RuntimeException(e);

}

}

public static void main(String a[]) {

try {

int aa = getYear("2012-01-08");

Systemoutprintln(aa);

} catch (Exception e) {

eprintStackTrace();

}

}

}

以上就是关于java 中,String time="2012-03-12 12:03:23" 我要获取该字符串里面的时分秒,注:不要截取字符,求方法,全部的内容,包括:java 中,String time="2012-03-12 12:03:23" 我要获取该字符串里面的时分秒,注:不要截取字符,求方法,、在java中怎么获取北京时间各位不要吝啬!、java 获取服务器的时间,年月日时分秒等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9328671.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存