gpt4 book ai didi

java - 以印度标准格式动态设置时区和返回时间

转载 作者:行者123 更新时间:2023-12-01 10:58:25 35 4
gpt4 key购买 nike

我从后端接收到以下格式的 JSON 数组

[
{
"time": "4:40pm",
"country": "Australia"
},
{
"time": "3:30pm",
"country": "america"
},
{
"time": "6:30am",
"country": "mexico"
}
]

我需要解析这个 json 并将每次转换为 IST(印度)时间

我以这种方式开始,我正在设置时区,但无法将此时间转换为 IST

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.TimeZone;

public class Testing {
public static void main(String[] args) throws ParseException {
String time = "4:40pm";
String country = "Australia";
convertDate(time, country);
}

public static String convertDate(String time, String country)
throws ParseException {
SimpleDateFormat in = new SimpleDateFormat("hh:mm");

if (country.equals("Australia")) {
in.setTimeZone(TimeZone.getTimeZone("Australia/Sydney"));
in.parse(time).toString();

}
return "";
}
}

最佳答案

你就快到了。

如果您想打印适合IST的hh:mm格式,您可以:

if (country.equals("Australia")) {
in.setTimeZone(TimeZone.getTimeZone("Australia/Sydney"));
SimpleDateFormat out = new SimpleDateFormat("hh:mm");
out.setTimeZone(TimeZone.getTimeZone("Asia/Kolkata"));
return out.format(in.parse(time));
}

关于java - 以印度标准格式动态设置时区和返回时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33479565/

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