Adding current date to a method in YYYY-MM-DD
本问题已经有最佳答案,请猛点这里访问。
我想将当前日期传递给此方法。 最终我会点击一个按钮,它会"卖一只动物"
1 2 3 | public static void sellingAnimals(int animalschoosen) { pets.get(animalschoosen).setSellingDate(); } |
在我脑海中,我想我可能需要创建一个函数并在
是的,您可以在方法
使用
将其设置为
1 2 | import java.text.SimpleDateFormat String currentDateString = new SimpleDateFormat('yyyy-MM-dd').format(new Date()) |
文档:https://docs.oracle.com/javase/7/docs/api/java/util/Date.html#Date()
1 2 3 | String DATE_PATTERN ="yyyy-MM-dd"; SimpleDateFormat dateFormat = new SimpleDateFormat(DATE_PATTERN); currentDate = dateFormat.format(new Date()); |