0

我想支持时区..因为我用UTC时间将日期值存储在数据库中,然后我转换时间取决于用户本地时区..因为我在我的数据库查询中使用这一行

CONVERT_TZ(modifiedtime,'+00:00','+05:30')这将为我提供印度标准时间的本地时区...但我的问题是我只有特定用户的秒数和 id 偏移量..

那么无论如何我可以将偏移量转换为格式,就像+05:30 or say +04.00 ,+04.30.. 任何人都可以给我适当的解决方案,如果我可以将这个以秒为单位的偏移量转换为格式,+hh:mm那么我可以直接将它提供给查询......

我正在使用 liferay 6.1 门户,因为我创建了我的自定义 portlet..所以我需要用 java 语言编写这段代码......所以请任何人指导我吗?

4

2 回答 2

3

以下内容可能会更短且更方便

private static SimpleDateFormat plus = new SimpleDateFormat("+hh:mm");

private static SimpleDateFormat minus = new SimpleDateFormat("-hh:mm");

private static String getTimeCode(int seconds) {
    SimpleDateFormat simpleDateFormat = (seconds < 0) ? minus : plus;
    if (seconds < 0) seconds = 12 * 3600 - seconds;
    simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
    return simpleDateFormat.format(new Date(seconds * 1000));
}

int seconds = 5 * 3600 + 30 * 60;
String format = getTime(seconds); //+05:30
format = getTime(-1 * seconds);   //-05:30

以上代码可能不适用于所有编码标准,但简称为 SO

于 2013-02-26T10:38:06.373 回答
1

您可以尝试编写自己的转换代码或尝试以下操作:

  long offset = 19800; //offset IST (seconds)
  long time = TimeUnit.SECONDS.toMinutes(offset); //or offset/60
  long hour = time / 60;
  long min = Math.abs(time % 60);
  String hrStr = "";
  if (hour > 0 && hour < 10) {
    hrStr = "+0" + String.valueOf(hour);
  } else if (hour >= 10) {
    hrStr = "+" + String.valueOf(hour);
  } else if (hour < 0 && hour > -10) {
    hrStr = "-0" + String.valueOf(hour).substring(1);
  } else {
    hrStr = String.valueOf(hour);
  }
  String minStr = String.valueOf(min);
  if (min < 10) {
    minStr = "0" + (time % 60);
  }
  String timeStr = hrStr + ":" + minStr;
  System.out.println(timeStr);
于 2013-02-26T06:23:12.340 回答