timestamp转string
时间: 2024-01-23 22:14:36 浏览: 79
以下是将Timestamp转化为String的示例代码:
```java
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Timestamp now = new Timestamp(System.currentTimeMillis());
String str = df.format(now);
System.out.println(str);
```
这段代码中,我们首先创建了一个SimpleDateFormat对象,指定了日期时间的格式为"yyyy-MM-dd HH:mm:ss"。然后,我们使用Timestamp类的构造函数获取当前系统时间的Timestamp对象。接下来,我们使用SimpleDateFormat的format方法将Timestamp对象转化为String类型的时间字符串。最后,我们打印输出这个时间字符串。
相关问题
timestamp转String
在Java中,可以使用`SimpleDateFormat`类将`timestamp`转换为`String`。下面是一个示例代码:
```java
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
long timestamp = System.currentTimeMillis(); // 获取当前时间戳
// 创建SimpleDateFormat对象,指定日期格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// 将timestamp转换为字符串
String dateString = sdf.format(new Date(timestamp));
System.out.println(dateString);
}
}
```
在上述代码中,我们使用`SimpleDateFormat`类来格式化日期。其中,`yyyy-MM-dd HH:mm:ss`是日期格式的模式,可以根据需要进行修改。`format()`方法将`Date`对象转换为字符串表示。输出结果将会是类似于`2022-01-01 12:34:56`的日期字符串。
java timestamp 转String
可以使用 `java.text.SimpleDateFormat` 类来将 `java.sql.Timestamp` 转换为字符串。以下是一个示例:
```java
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
public class TimestampToStringExample {
public static void main(String[] args) {
Timestamp timestamp = new Timestamp(System.currentTimeMillis());
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String strTimestamp = sdf.format(timestamp);
System.out.println(strTimestamp);
}
}
```
此代码将当前时间戳转换为字符串格式,格式为 `yyyy-MM-dd HH:mm:ss`。您可以根据需要更改日期格式。
阅读全文