我们可以通过将long类型的时间戳转换为Date对象,然后使用SimpleDateFormat类将其格式化为字符串。 下面是一个使用SimpleDateFormat类的示例代码: importjava.text.SimpleDateFormat;importjava.util.Date;publicclassLongToStringExample{publicstaticvoidmain(String[]args){longtimestamp=System.currentTimeMillis();Datedate=...
最后一步,我们使用日期格式化对象对Date对象进行格式化,得到我们想要的字符串表示。 StringformattedDate=sdf.format(date); 1. 至此,我们已经完成了将Long时间转换为当前时间的字符串表示的过程。 示例代码 publicclassTimeConverter{publicstaticvoidmain(String[]args){Longtimestamp=System.currentTimeMillis();Datedate...
1 新建一个java类型,在main方法中,编写Calendar c = Calendar.getInstance(); //获取日历对象 2 使用Calendar对象set需要转化的long类型数字 c.setTimeInMillis(1617872250000L); //设置时间为需要转化的long类型数据 如图所示:3 输出打印可以看到转换后的时间。System.out.println(c.getTime());...
ZoneId.systemDefault())); } /** * 将字符串转日期成Long类型的时间戳,格式为:yyyy-MM...
} /** * 把毫秒转化成日期 * @param dateFormat(日期格式,例如:MM/ dd/yyyy HH:mm:ss) * @param millSec(毫秒数) * @return */ private static String transferLongToDate(String dateFormat,Long millSec){ SimpleDateFormat sdf = new SimpleDateFormat(dateFormat...
java long型数字和时间date的转换 项目中从tmall推来的时间是一串数字,如下 需要进行转换然后存入数据库 时间格式转换类如下:SimpleDateUtil packagecn.tmall.Intermediate_system.utils;importorg.apache.commons.lang.StringUtils;importjava.sql.Date;importjava.text.ParseException;importjava.text.SimpleDateFormat;...
JAVA8 现在时间、时间、Long时间戳与时间字符串互转 最近做同步第三方数据的项目,需要获取现在时的String类型,只是几个方法,于是就有了日期工具类。 话不多说,直接上代码: /** *@authorlqq *@date2021/7/5 11:00 */ publicclassDateUtil{ // 时间格式为:yyyy-MM-dd HH:mm:ss...
今天遇到了这样一个场景:从数据库中取出的数据,日期信息(年月日)是以8位Long类型数字存放的(如20161116),时间信息(时分秒)是以6位Long类型数字存放的(如184253)。现需要将其转换为字符串,格式使用“yyyy-MM-dd HH:mm:ss”。 我写的工具类代码如下: im ...
把long时间的毫秒转化为Date日期有2种方法。第一,利用java.util.Date直接转换 1、获取到毫秒值 millis 2、new一个Date对象 date 3、直接调用date.setTime(millis)第二种方法利用java.util.Calendar转换 1、获取到毫秒值 millis 2、获取一个日历类Calendar实例cal 3、调用cal.setTimeInMillis(millis);4...
//long转DateprivateDateLongToDate(long str){Date date=newDate(str*1000);returndate;}//long转StringprivateStringLongToString(long str){SimpleDateFormat sdf=newSimpleDateFormat("yyyy/MM/dd");String string=sdf.format(str*1000);returnstring;}...