gpt4 book ai didi

java - java中获取ResultTable[]的第一个元素

转载 作者:行者123 更新时间:2023-12-02 10:51:06 25 4
gpt4 key购买 nike

这些代码:

String genType = FileConstants.CHANGE_CYCLE;
ResultTable[] genericCode = RTManager.getRTCsmGenericCodesDecodeList(genType);
String genCode = Arrays.toString(genericCode);

返回这些值:

genCode = [[code=22:00:00]

[dCode=Cut-off time for change bill_cycle if existing cycle_close_date=activity_date]]

问题:如何仅获取 '22:00:00' 并将其转换为 时间数据类型

最佳答案

如果 ResultTable 数组中的项目具有 toString() 并且它生成字符串,那么您可以像这样获取它。

genericCode[0].toString().split("=")[1]

<小时/>
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class DateExample {

public static void main(String[] args) {

String time = "22:00:00";
SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss");
Date date;
try {
date = sdf.parse(time);
System.out.println("Time: " + sdf.format(date));
} catch (ParseException e) {
e.printStackTrace();
}

}
}

关于java - java中获取ResultTable[]的第一个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52176782/

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