博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java日期多次使用修改,数据有问题
阅读量:6819 次
发布时间:2019-06-26

本文共 351 字,大约阅读时间需要 1 分钟。

  hot3.png

接收的报文有一个参数是日期,java date类型,给同一个对象赋值,第一次直接赋值,第二个日期增加一年赋值,结果发现,两个日期都变了,处理办法,第二个日期需要单独处理,使用 calendar。指的是 time 和anothertime

temp.setTime(request.getTime());

Calendar calendar = new GregorianCalendar();

calendar.setTime(request.getTime());

calendar.add(Calendar.YEAR,1);

temp.setAnotherTime(calendar.getTime());

转载于:https://my.oschina.net/gh200/blog/3023772

你可能感兴趣的文章