java统计时间的代码的简单介绍

如何用java计算时间到微秒使用Date类的getTime()方法
下面是示例代码,比如你要统计代码的执行时间:
import java.util.Date;
public class Test {
public static void main(String[] args) {
long begin = new Date().getTime();
double d = 4;
for (int i = 0; i200000; i){
d= 4;
}
System.out.println(d);
long end = new Date().getTime();
System.out.println(end - begin);
}
}
下面再看一下getTime的定义:
/**
* Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT
* represented by this ttDate/tt object.
*
* @returnthe number of milliseconds since January 1, 1970, 00:00:00 GMT
*represented by this date.
*/
public long getTime() {
return getTimeImpl();
}
milliseconds就是微妙的意思,所以getTime的精度是微妙
java中如何实现 统计时间long t1=System.currentTimeMillis();
.......... //中间放你要测的代码
System.out.println("这段代码运行了:"(System.currentTimeMillis()-t1)/1000"秒!”);
java计算时间可以这么写java统计时间的代码:
public static void compute() {
Scanner scanner = new Scanner(System.in);
int time1, time2, hours, minutes;
time1 = scanner.nextInt();
time2 = scanner.nextInt();
String t1 = String.valueOf(time1);
String t2 = String.valueOf(time2);
//开始时间java统计时间的代码的小时
int t1_hour = Integer.parseInt(t1.substring(0, t1.length()-2));
//结束时间的小时
int t2_hour = Integer.parseInt(t2.substring(0, t2.length() - 2));
//开始时间的分钟
int t1_minute = Integer.parseInt(t1.substring(t1.length()-2));
//结束时间的分钟
int t2_minute = Integer.parseInt(t2.substring(t2.length() - 2));
//时间差的小时
hours =((t2_hour * 60t2_minute)- (t1_hour * 60t1_minute))/60;
//时间差的分钟
minutes =((t2_hour * 60t2_minute)- (t1_hour * 60t1_minute))`;
System.out.println("The train journey time is " hours " hrs "minutes " mins.");
scanner.close();
}
java整么计算时间提供一个时间操作类给你,你可以调用里面的dateDiff方法,dateDiff(new Date(), getDateFromString("明天的字符串")表示的就是现在到明天0点之前的差距天数 。
你要分钟数的话就自己改一下dateDiff,不要除以60和24就是分钟了
以下是工具类代码
import org.apache.log4j.Logger;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class AdDateUtil {
private static Logger logger = Logger.getLogger(AdDateUtil.class);
static public String getNowStr(String format) {
SimpleDateFormat sdf = new SimpleDateFormat(format);
String now = sdf.format(new Date());
return now;
}
static public Date getFormatDate(String date, String format) {
SimpleDateFormat sdf = new SimpleDateFormat(format);
Date d = new Date();
try {
d = sdf.parse(date);
} catch (ParseException e) {
logger.error(e);
}
return d;
}
static public String getDateStr(Date date, String format) {
SimpleDateFormat sdf = new SimpleDateFormat(format);
String d = sdf.format(date);
return d;
}
static public String getPadZeroString(String s, int size) {
StringBuffer sb = new StringBuffer();
for (int i = 0; i(size - s.length()); i) {
sb.append("0");
}
sb.append(s);
return sb.toString();
}
/**
* 得到某月的天数
*
* @param year
* @param month
* @return
*/
static public int getDayCountOfMonth(String year, String month) {
Calendar cal = Calendar.getInstance();
// 年
cal.set(Calendar.YEAR, Integer.parseInt(year));
// 月 , 因为Calendar里的月是从0开始 , 所以要-1
cal.set(Calendar.MONTH, Integer.parseInt(month) - 1);
return cal.getActualMaximum(Calendar.DAY_OF_MONTH);
}
static public String getYesterday(String format) {
SimpleDateFormat df = new SimpleDateFormat(format);
Calendar now = Calendar.getInstance();
now.roll(Calendar.DAY_OF_YEAR, -1); //昨天
return df.format(now.getTime());
}
/**
* 获取和今天附近的某天
* @param format
* @param diff
* @return
*/
static public String getADay(String format, int diff) {
SimpleDateFormat df = new SimpleDateFormat(format);
Calendar now = Calendar.getInstance();
int beforeM = now.get(Calendar.MONTH);
now.roll(Calendar.DAY_OF_YEAR, diff); //
int nowM = now.get(Calendar.MONTH);
//必须进行日期处理,否则2009-01-04日前七天是2009-12-28
if (nowMbeforeM) {
now.roll(Calendar.YEAR, -1);
}
return df.format(now.getTime());
}
static public String getTomorrow(String format) {
SimpleDateFormat df = new SimpleDateFormat(format);
Calendar now = Calendar.getInstance();
now.roll(Calendar.DAY_OF_YEAR, 1); //明天
return df.format(now.getTime());
}
/**
* 得到最近num天的全部日期
* 说明:
* 1.日期是从昨天开始算的.
* 2.如果num=2 , 日期是2008-03-14 ,则返回的结果为 2008-03-12、2008-03-13
* @param num
* @return
*/
public static String[] getDaysByNum(int num, String date) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String[] result = {};
Calendar cal = Calendar.getInstance();
cal.setTime(getDateFromString(date, "yyyy-MM-dd"));
//最近一周
result = new String[num];
for (int i = num; i0; i--) {
cal.add(Calendar.DAY_OF_YEAR, -1);
result[i - 1] = sdf.format(new Date(cal.getTimeInMillis()));
}
return result;
}
public static Date getDateFromString(String dateStr, String format) {
if ((dateStr == null) || (format == null)) {
try {
throw new Exception("数据类型异常"dateStr"|"format);
} catch (Exception e) {
logger.error("数据类型异常:"e);
}
}
SimpleDateFormat df = new SimpleDateFormat(format);
Date date;
try {
date = df.parse(dateStr);
return date;
} catch (Exception ex) {
logger.error(ex);
return new Date();
}
}
static public int getNowYear() {
Calendar cal = Calendar.getInstance();
return cal.get(Calendar.YEAR);
}
static public int getNowMonth() {
Calendar cal = Calendar.getInstance();
return cal.get(Calendar.MONTH)1;
}
public static String[] getMonthRang(String year, String month) {
String beginDate = year"-"month"-01";
String endDate = year"-"month"-"
getDayCountOfMonth(year, month);
return getDaysByRang(beginDate, endDate);
}
public static String[] getDaysByRang(String beginDate, String endDate) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
//得到两个日期间相差多少天
int num = dateDiff(beginDate, endDate);
if (num0) {
//颠倒一下日期
String tmp = beginDate;
beginDate = endDate;
endDate = tmp;
num = 0 - num;
}
String[] result = {};
Calendar cal = Calendar.getInstance();
try {
cal.setTime(sdf.parse(beginDate));
} catch (ParseException e) {
e.printStackTrace();
}
num = num1; //把开始和结束日期都包含进去
result = new String[num];
for (int i = 0; inum; i) {
if (i0) {
cal.add(Calendar.DAY_OF_YEAR, 1);
}
result[i] = sdf.format(new Date(cal.getTimeInMillis()));
}
return result;
}
public static int dateDiff(String beginDate, String endDate) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date date = null;
try {
date = sdf.parse(endDate);
} catch (ParseException e) {
date = new Date();
e.printStackTrace();
}
long end = date.getTime();
try {
date = sdf.parse(beginDate);
} catch (ParseException e) {
date = new Date();
【java统计时间的代码的简单介绍】e.printStackTrace();
}
long begin = date.getTime();
long day = (end - begin) / (1000 * 3600 * 24); //除1000是把毫秒变成秒
return Integer.parseInt(Long.toString(day));
}
public static void main(String[] args) {
System.out.println(AdDateUtil.getADay("yyyy-MM-dd", -7));
}
}
java如何计算程序运行时间第一种是以毫秒为单位计算的 。
[java] view plain copy
//伪代码
long startTime=System.currentTimeMillis();//获取开始时间
doSomeThing();//测试的代码段
long endTime=System.currentTimeMillis(); //获取结束时间
System.out.println("程序运行时间: " (end-start) "ms");
第二种是以纳秒为单位计算的 。
[java] view plain copy
//伪代码
long startTime=System.nanoTime();//获取开始时间
doSomeThing();//测试的代码段
long endTime=System.nanoTime(); //获取结束时间
System.out.println("程序运行时间: " (end-start) "ns");
包含所需的包:import java.lang.System;
java统计时间的代码的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于、java统计时间的代码的信息别忘了在本站进行查找喔 。

    推荐阅读