日期型別與字串轉換
常用工具類
例: // 新建乙個時間物件,預設是當前時間
// 時間戳:從1970-1-1 00:00:00開始記數的時間毫秒數
date d = new date();
date d2 = new date(system.currenttimemillis() - 24 * 60 * 60 * 1000);
system.out.println(d);
system.out.println(system.currenttimemillis());
calendar cal = calendar.getinstance();
// 設定當前基準時間
cal.settime(d);
// set:field設定的時間屬性,value是設定的值
cal.set(calendar.date, 2);
cal.set(calendar.hour_of_day, 13);
// add方法,增加或減少時間值
cal.add(calendar.date, -2);
// system.out.println(cal.gettime());
// 格式化時間
******dateformat format = new ******dateformat(
" yyyy-mm-dd hh:mm:ss 今天是一年當中的第d天");
system.out.println(format.format(cal.gettime()));
日期常用工具類記錄
public class dateutils public static string sectotime int time else return timestr public static string unitformat int i 獲取某個日期的10位時間戳,date格式yyyy mm d...
常用工具類
本講內容 常用工具類 陸續更新 author administrator public static context context public void oncreate public static context getcontext 2 提供所有activity呼叫 基類 author ad...
常用工具類
reflectionutils objectutils public static void main string args 判斷兩個陣列是否相等 system.out.println arrays.equals arr,arr true 列印陣列 string s1 arrays.tostrin...