Android 将时间戳记格式化为字符串
示例
有关模式的完整说明,请参见SimpleDateFormat参考。
Date now = new Date();long timestamp = now.getTime();
SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy", Locale.US);
String dateStr = sdf.format(timestamp);
以上是 Android 将时间戳记格式化为字符串 的全部内容, 来源链接: utcz.com/z/321341.html