我正在S3上保存一些流数据。我使用年 - 月 - 日 - 小时 - 分钟的格式将标题放到文件夹中。
问题是文件夹似乎以12小时格式命名,但我使用的是template ABC {
use the " getDetailsUrl" and use the details in forming the email
}
:
yyyyMMddHHmm
答案 0 :(得分:0)
从旧的日期/时间类切换到新的scala> val fmt = "yyyyMMddHHmm"
scala> val df = java.time.format.DateTimeFormatter.ofPattern(fmt)
scala> val foldername = java.time.LocalDateTime.now.format(df)
foldername: String = 201702281104
类。使用此:
FileSystem::