0
 private void getSelectedTime(final String json){

        Calendar now = Calendar.getInstance();
        int year = now.get(Calendar.YEAR);
        int month = now.get(Calendar.MONTH); // Note: zero based!
        int day = now.get(Calendar.DAY_OF_MONTH);
        int hour = now.get(Calendar.HOUR_OF_DAY);
        int minute = now.get(Calendar.MINUTE);
        int second = now.get(Calendar.SECOND);
        int millis = now.get(Calendar.MILLISECOND);
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm");


        JSONArray list;
        JSONObject jsonObject;

        try {
            jsonObject = new JSONObject(json);

            list = jsonObject.getJSONArray("3");
            StringTokenizer tokenizer = new StringTokenizer(list.get(0).toString(),"-");
            String startTime = tokenizer.nextToken();
            String endTime = tokenizer.nextToken();
            String temp1 = year+"/"+month+"/"+day+" "+startTime;
            String temp2 = year+"/"+month+"/"+day+" "+endTime;
            System.out.println("temp1="+temp1);
            System.out.println("temp2="+temp2);

            Date date1 = dateFormat.parse(temp1); // temp1=2012/5/25 03:00
            Date date2 = dateFormat.parse(temp2); //temp2=2012/5/25 03:06

            System.out.println("Year1="+date1.getYear());
            System.out.println("Month1="+date1.getMonth());
            System.out.println("Day1="+date1.getDay());
            System.out.println("Hour1="+date1.getHours());
            System.out.println("Minutes1="+date1.getMinutes());

        } catch (JSONException e) {
            e.printStackTrace();
        }
        catch (ParseException e) {
            e.printStackTrace();
        }

    }

}

在我的应用程序中,我正在处理时间,我在这里遇到了一些问题。看看下面我有这个结果。

list.get(0) = 03:00-03:06
temp1=2012/5/25 03:00
temp2=2012/5/25 03:06

但是当我尝试这样做时

System.out.println("Year="+date1.getYear());
System.out.println("Month="+date1.getMonth());
System.out.println("Day="+date1.getDay());
System.out.println("Hour="+date1.getHours());
System.out.println("Minutes="+date1.getMinutes());

我有这个结果

Year=112
Month=4
Day=5
Hour=3
Minutes=0

谁能告诉我为什么结果是错误的?

4

2 回答 2

5

谁能告诉我为什么我的结果是错误的?

当然 - 您正在使用不推荐使用的方法(您应该收到警告 - 不要忽略它们!),并且您还没有阅读它们的文档。例如,来自Date.getYear()

返回一个值,该值是从包含或以此 Date 对象表示的时刻开始的年份减去 1900 的结果,如本地时区所解释的那样。

如果你想坚持使用 JDK,你应该在适当的时区使用(用viajava.util.Calendar填充它)。请注意,月份仍然是从 0 开始的,尽管年份至少更合理。DatesetTimeCalendar

但是,如果可能的话,通常使用Joda Time会更好。这是一个更好的深思熟虑的 API。不过,它可能对您来说太大而无法在 Android 上使用 - 您可能希望查看是否有可用的精简版本。

于 2012-06-25T11:24:13.033 回答
0

你也可以做而不是date1.getYear()

Calendar cal = Calendar.getInstance();
cal.setTime(date1);

int year = cal.get(Calendar.year);

这也适用于其他时间值。或者您可以使用已经建议的 Joda Time。

于 2012-06-25T11:34:42.147 回答