scala 如何将java.sql.Timestamp 类型转化字符串
时间: 2024-05-12 17:17:19 浏览: 194
scala-2.12.14.zip&scala-2.12.11.tgz Linux版本压缩包.rar
将java.sql.Timestamp类型转化为字符串可以通过使用SimpleDateFormat类的format方法来实现,示例代码如下:
```scala
import java.text.SimpleDateFormat
import java.util.Date
import java.sql.Timestamp
// 定义格式化字符串
val format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS")
// 创建一个Timestamp对象
val ts = new Timestamp(System.currentTimeMillis())
// 将Timestamp类型转化为字符串
val str = format.format(new Date(ts.getTime()))
// 打印输出结果
println(str)
```
其中,SimpleDateFormat类的format方法用于将Date类型转化为指定格式的字符串,Date(ts.getTime())用于将Timestamp类型转化为Date类型。
阅读全文