gpt4 book ai didi

android - 在Kotlin中将日期时间字符串(2018-04-13T20 :00:00. 0400)转换为日期字符串(April 13, 2018)

转载 作者:搜寻专家 更新时间:2023-11-01 07:42:34 25 4
gpt4 key购买 nike

我想将“2018-04-13T20:00:00.0400”之类的日期时间字符串转换为“2018 年 4 月 13 日”。我用过代码

val sdf = SimpleDateFormat("yyyy/mm/dd", Locale.getDefault())
val startDate = sdf.parse(data.start_time)

但是使用这段代码,我的应用程序崩溃了。关于此的任何帮助

日志显示这个

2018-10-11 16:44:56.948 20482-21021/? E/NowController: Failed to access data from EntryProvider. ExecutionException.
java.util.concurrent.ExecutionException: com.google.android.apps.gsa.sidekick.main.h.n: Could not complete scheduled request to refresh entries. ClientErrorCode: 3
at com.google.common.util.concurrent.d.eA(SourceFile:85)
at com.google.common.util.concurrent.d.get(SourceFile:23)
at com.google.common.util.concurrent.l.get(SourceFile:2)
at com.google.android.apps.gsa.staticplugins.nowstream.b.a.be.cbB(SourceFile:49)
at com.google.android.apps.gsa.staticplugins.nowstream.b.a.be.cbA(SourceFile:181)
at com.google.android.apps.gsa.staticplugins.nowstream.b.a.bh.run(Unknown Source:2)
at com.google.android.apps.gsa.shared.util.concurrent.at.run(SourceFile:4)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:458)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:458)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at com.google.android.apps.gsa.shared.util.concurrent.b.g.run(Unknown Source:4)
at com.google.android.apps.gsa.shared.util.concurrent.b.aw.run(SourceFile:4)
at com.google.android.apps.gsa.shared.util.concurrent.b.aw.run(SourceFile:4)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1167)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
at java.lang.Thread.run(Thread.java:764)
at com.google.android.apps.gsa.shared.util.concurrent.b.i.run(SourceFile:6)
Caused by: com.google.android.apps.gsa.sidekick.main.h.n: Could not complete scheduled request to refresh entries. ClientErrorCode: 3
at com.google.android.apps.gsa.staticplugins.nowstream.b.a.ar.az(Unknown Source:4)
at com.google.common.util.concurrent.q.ap(SourceFile:7)
at com.google.common.util.concurrent.p.run(SourceFile:32)
at com.google.common.util.concurrent.bt.execute(SourceFile:3)
at com.google.common.util.concurrent.d.b(SourceFile:275)
at com.google.common.util.concurrent.d.addListener(SourceFile:135)
at com.google.common.util.concurrent.p.b(SourceFile:3)
at com.google.android.apps.gsa.shared.util.concurrent.h.a(SourceFile:16)
at com.google.android.apps.gsa.shared.util.concurrent.h.a(SourceFile:13)
at com.google.android.apps.gsa.staticplugins.nowstream.b.a.be.cbB(SourceFile:47)

最佳答案

tl;dr

使用现代 java.time 类,绝不使用糟糕的遗留类。

这是Java语法(我还没有学过Kotlin)。

LocalDateTime                             // Represent a date with time-of-day but lacking offset-from-UTC or time zone. As such, this does *not* represent a moment, is *not* a point on the timeline.
.parse( "2018-04-13T20:00:00.0400" ) // Parse an input string in standard ISO 8601 format. Returns a `LocalDateTime` object.
.toLocalDate() // Extract the date-only portion without the time-of-day. Still no time zone or offset-from-UTC. Returns a `LocalDate` object.
.format( // Generate text representing the value of that `LocalDate` object.
DateTimeFormatter // Define a pattern to use in generating text.
.ofLocalizedDate( FormatStyle.LONG ) // Automatically localize, specifying how long/abbreviated…
.withLocale( Locale.US ) // … and what human language and cultural norms to use in localizing.
) // Return a `String`.

April 13, 2018

对于早期的 Android,请参阅下方底部的项目符号。

使用java.time

convert the DateTime string like "2018-04-13T20:00:00.0400" into "April 13, 2018".

您正在使用多年前被 java.time 类取代的可怕的旧日期时间类。

首先,解析您的输入字符串。但是最后那个 .0400 是什么?也许是零点几秒?但传统上,毫秒、微秒或纳秒以 3 位数字为一组显示。所以你这里的四位数是奇数。也许是与 UTC 的偏移量?四位数是正确的,小时和分钟前导零。但是没有plusminus 符号来表示在UTC 之前或之后。所以我会选择小数秒。

您的输入缺少任何与 UTC 或时区的偏移指示符。因此解析为 LocalDateTime。您的字符串采用标准 ISO 8601 格式。 java.time 类默认使用标准格式。

String input = "2018-04-13T20:00:00.0400";
LocalDateTime ldt = LocalDateTime.parse( input );

ldt.toString(): 2018-04-13T20:00:00.040

提取日期部分。

LocalDate ld = ldt.toLocalDate() :

ld.toString(): 2018-04-13

生成表示该日期值的文本。让 java.time 自动本地化。要本地化,请指定:

  • FormatStyle确定字符串的长度或缩写。
  • Locale确定:
    • 用于翻译日期名称、月份名称等的人类语言
    • 决定缩写、大写、标点符号、分隔符等问题的文化规范

代码:

DateTimeFormatter f = DateTimeFormatter.ofLocalizedDate( FormatStyle.LONG ).withLocale( Locale.US );
String output = ld.format( f );

April 13, 2018

注意:LocalDateTime 对象不是一个时刻,不是时间轴上的一个点。缺少与 UTC 或时区的任何偏移量意味着它代表了一系列潜在时刻,大约在 26-27 小时的范围内(当前全局时区范围)。如果输入字符串隐含地表示某个区域的挂钟时间中的时刻,则应在提取 之前应用 ZoneId 获取 ZonedDateTime >本地日期。这已经在 Stack Overflow 上多次展示过。


关于java.time

java.time框架内置于 Java 8 及更高版本中。这些类取代了麻烦的旧类 legacy日期时间类,例如 java.util.Date , Calendar , & SimpleDateFormat .

Joda-Time项目,现在在maintenance mode , 建议迁移到 java.time类。

要了解更多信息,请参阅 Oracle Tutorial .并在 Stack Overflow 中搜索许多示例和解释。规范为 JSR 310 .

您可以直接与您的数据库交换java.time 对象。使用 JDBC driver符合 JDBC 4.2或以后。不需要字符串,不需要 java.sql.* 类。

从哪里获得 java.time 类?

ThreeTen-Extra项目用附加类扩展 java.time。该项目是 future 可能添加到 java.time 的试验场。您可能会在这里找到一些有用的类,例如 Interval , YearWeek , YearQuarter , 和 more .

关于android - 在Kotlin中将日期时间字符串(2018-04-13T20 :00:00. 0400)转换为日期字符串(April 13, 2018),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52759033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com