gpt4 book ai didi

java - 如何在 Android 中添加一系列代表一段时间的字符串输入?

转载 作者:行者123 更新时间:2023-12-01 19:28:07 26 4
gpt4 key购买 nike

我正在从服务器获取时间列表,并希望添加以显示所用的总时间。但找不到怎么办。因为时间就像一个普通的句子。

15 min 24 s
1 min 56 s
18 min 3 s
2 h 48 min 46 s

如何添加这些数据?

最佳答案

tl;博士

使用带有标准 ISO 8601 输入字符串的 java.time.Duration 类。

Duration total = 
Duration
.parse(
"PT" +
"2 h 48 min 46 s"
.replace( "h" , "H" )
.replace( "min" , "M" )
.replace( "s" , "S" )
.replace( " " , "" )
)
.plus(
… another `Duration` object
)

ISO 8601

向该数据的发布者介绍 ISO 8601标准定义了多种以文本形式传输日期时间值的格式。

标准format for a span of time未附加到时间线的是 PnYnMnDTnHnMnS,其中 P 标记开始(将其视为“p”代表“句点”),而 T 分隔任意年-月-日,任意时-分-秒。

转换您的输入

您的示例输入可以转换为 ISO 8601 格式。

min 替换为 M。将 h 替换为 H。并将 s 替换为 S

此外,删除所有空格字符。前面加上 PT

String input = "2 h 48 min 46 s" ;
String inputIso8601 =
"PT" +
input
.replace( "h" , "H" )
.replace( "min" , "M" )
.replace( "s" , "S" )
.replace( " " , "" )
;

持续时间

Java 中的现代 java.time 类包括 Duration 。该类表示不附加到时间线的时间跨度(以小时-分钟-秒为单位)。

该类知道如何解析和生成标准 ISO 8601 格式的字符串。

Duration d = Duration.parse( inputIso8601 ) ;

该类(class)还知道如何做数学、加减持续时间。

Duration dTotal = d1.plus( d2 ) ;

示例

让我们创建一个该转换代码的方法。

public String convertInputToIso8601 ( String input )
{
String inputIso8601 =
"PT" +
input
.replace( "h" , "H" )
.replace( "min" , "M" )
.replace( "s" , "S" )
.replace( " " , "" );
return inputIso8601;
}

让我们使用您的示例输入。

    List < String > inputs = List.of(
"15 min 24 s" ,
"1 min 56 s" ,
"18 min 3 s" ,
"2 h 48 min 46 s"
);

测试转换这些输入的格式。

    List < String > inputsIso8601 = 
inputs
.stream()
.map( this :: convertInputToIso8601 )
.collect( Collectors.toList() )
;

转储到控制台。

    System.out.println(
inputsIso8601
);

[PT15M24S, PT1M56S, PT18M3S, PT2H48M46S]

看起来不错。现在解析为 Duration 对象。

    List < Duration > durations = 
inputsIso8601
.stream()
.map( Duration :: parse )
.collect( Collectors.toList() )
;

转储到控制台。

    System.out.println( durations );

[PT15M24S, PT1M56S, PT18M3S, PT2H48M46S]

看起来也不错。现在算一下。 java.time 类使用 immutable objects 。这意味着我们的数学运算会产生一个新的对象,而不是改变(变异)原始对象。

使用传统语法来计算持续时间的总和。

    Duration total = Duration.ZERO;
for ( Duration duration : durations )
{
total = total.plus( duration );
}

使用流来求和持续时间。

Duration total = 
durations
.stream()
.reduce(
Duration.ZERO ,
Duration::plus
)
;

转储到控制台。

    System.out.println( "total = " + total );

total = PT3H24M9S

这有效。您的投入总计近三个半小时。

这又是该代码,全部放在一起。

    List < String > inputs = List.of(
"15 min 24 s" ,
"1 min 56 s" ,
"18 min 3 s" ,
"2 h 48 min 46 s"
);

List < String > inputsIso8601 = inputs.stream().map( this :: convertInputToIso8601 ).collect( Collectors.toList() );
System.out.println( inputsIso8601 );

List < Duration > durations = inputsIso8601.stream().map( Duration :: parse ).collect( Collectors.toList() );
System.out.println( durations );

Duration total = durations.stream().reduce( Duration.ZERO , Duration::plus ) ;

System.out.println( "total = " + total );

我想我们可以将这三个流语句合并为一个。但阅读和调试可能会更加困难。

<小时/>

关于java.time

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

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

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

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

从哪里获取java.time类?

关于java - 如何在 Android 中添加一系列代表一段时间的字符串输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60802046/

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