Android 时间戳字符串转Date类型



String timestamp= System.currentTimeMillis()+"";
Date date = new Date(Long.valueOf(timestamp));


猜你喜欢

转载自blog.csdn.net/qq_36125733/article/details/78640250