Android 时间换算

Android time conversion

我已经完成了下面的代码,将时间从 UTC 更改为另一个时区,但代码仅显示 UTC time.Also 在格式化为源时间格式后它显示系统时区。

private String setTimezone(String time){
sourceformatter = new SimpleDateFormat("hh:mm a, E dd MMM yyyy");
dateFormatter = new SimpleDateFormat("hh:mm a");

sourceformatter.setTimeZone(TimeZone.getTimeZone("UTC"));
    Log.e("reicievedformat",time);
Date value = null;
try {
    value = sourceformatter.parse(time);
} catch (ParseException e) {
    e.printStackTrace();
}
Log.d("afterfirstformat",dateFormatter.format(value));
dateFormatter.setTimeZone(TimeZone.getTimeZone("IST"));
time =dateFormatter.format(value);
    Log.d("Finaltime",time);
return time;
}

Output:- Log values

  • E/reicievedformat: 12:36 PM, Mon 08 Oct 2018

  • D/afterfirstformat: 06:21 PM

  • D/Finaltime: 12:36 PM

如您所见,我在 2018 年 10 月 8 日星期一 ("UTC") 收到 12:36 下午 ("UTC"),我想转换为 IST,但最后一次 12:36 PM,好像没有转换。

IST 在java 代表"Israel Standard Time"。 将此用于 "Indian Standard Time"

dateFormatter.setTimeZone(TimeZone.getTimeZone("Asia/Kolkata"));

Java 中的日期和时间 API 让您头疼。 我通过 Daniel Lew 使用这个库。 https://github.com/dlew/joda-time-android

试试这个

public static String getDateOut(String ourDate) {
        try
        {
            //be sure that passing date has same format as formatter
            SimpleDateFormat formatter = new SimpleDateFormat("hh:mm a, E dd MMM yyyy");
            formatter.setTimeZone(TimeZone.getTimeZone("UTC"));
            Date value = formatter.parse(ourDate);

            SimpleDateFormat dateFormatter = new SimpleDateFormat("hh:mm a"); //this format changeable
            dateFormatter.setTimeZone(TimeZone.getTimeZone("IST"));
            ourDate = dateFormatter.format(value);

        }
        catch (Exception e)
        {
            ourDate = "00-00-0000 00:00";
        }
        return ourDate;
    }