我应该如何添加120天到我目前使用简单日期格式的日期?
我看过很少关于它的帖子但是无法让它工作,
我的代码如下:
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
//get current date time with Date()
Date date = new Date();
Run Code Online (Sandbox Code Playgroud)
我是否需要使用该Calendar库,或者我可以使用简单的日期格式吗?