Android 将时间戳记格式化为字符串

示例

有关模式的完整说明,请参见SimpleDateFormat参考。

Date now = new Date();
long timestamp = now.getTime();
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy", Locale.US);
String dateStr = sdf.format(timestamp);