目前我正在使用DateFormat
转换Current Date,然后我得到类似的输出8/27/12 (month/day/year)
。
但我想这样显示Today, Yesterday
。
这个怎么做?
请帮我
我试过这个:
long dtMili = System.currentTimeMillis();
Date d = new Date(dtMili);
java.text.DateFormat dateFormat = android.text.format.DateFormat.getDateFormat(getApplicationContext());
System.out.println("DATE FORMAT "+ dateFormat.format(d));
在 iPhone 中使用日期格式:
NSString *dateString = [self getNaturalDay:CurrentDate];