用Java语言,在前段列表某字段获取当时时间
时间: 2023-06-18 13:03:28 浏览: 85
假设你要获取当前时间并将其赋值给一个字段,可以使用如下代码:
```java
import java.util.Date;
import java.text.SimpleDateFormat;
public class MyClass {
public static void main(String[] args) {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = new Date();
String currentTime = formatter.format(date);
// 假设你要将当前时间赋值给列表中的createTime字段
// 这里假设你有一个List<MyObject>对象
List<MyObject> myList = new ArrayList<>();
for (MyObject obj: myList) {
obj.setCreateTime(currentTime);
}
}
}
```
这里通过`SimpleDateFormat`类将当前时间格式化为字符串,然后遍历列表并将获取的时间赋值给相应的字段。你需要根据实际情况调整代码。
阅读全文