java - 将字符串转换为日期(复杂时区)

标签 java string datetime jodatime

我的日期非常不规则,例如:

2012 年 1 月 9 日星期一 14:18:32 -0800(格林威治标准时间)

2006 年 10 月 18 日 00:32:03 -0000

世界标准时间 2006 年 11 月 18 日星期六 19:52:23

我做了一个非常复杂的函数来完成这一切,它可以工作,但为了学习的目的,我想使用 try 和 catch 再次完成它。 我的问题是,我该如何处理时区?您可以在我的函数中看到所有时区,但是我也有一些时间(...例如作为时区,我不想将所有情况存储在字符串数组中。

我也想使用Joda-Time ,(可以是 localDate 或 dateTime,对我来说并不重要)。

public LocalDate handleDate(String date) {

        String[] days = { "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" };
        String[] months = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul",
                "Aug", "Sep", "Oct", "Nov", "Dec" };
        String[] years = { "2004", "2005", "2006", "2007", "2008", "2009",
                "2010", "2011", "2012" };

        // ORDER IS VERRY IMPORTANT!! ( MEST must be before EST for example)
        String[] timesZones = { "BST", "CET", "CEST", "CST", "CDT", "EDT",
                "GMT+00:00", "GMT", "IST", "MEST", "EST", "MET", "MDT", "PST",
                "PDT", "SAST", "UTC", "UT", "W. Europe Standard Time",
                "West-Europa (zomertijd)" };

        String origDate = date;

        String timeZone = "";
        String year = "";
        String month = "";
        String day = "";
        int hours = 0;
        int minutes = 0;
        int seconds = 0;

        // is it valid?
        date = trim(date);
        if (date.equals("")) {
            return null;
        }

        // first delete the comma that comes mostly after the day
        date = date.replaceAll(",", "");

        // remove the day
        for (int i = 0; i < days.length; i++) {
            if (date.contains(days[i])) {
                date = date.replace(days[i], "");
                break;
            }
        }

        // if(date.contains("23:27:17")) println(date);

        for (int i = 0; i < timesZones.length; i++) {
            // first check with '(' and ')'
            String target = "(" + timesZones[i] + ")";

            if (date.contains(target)) {
                timeZone = timesZones[i];
                date = date.replace(target, "");
                break;
            }

            // if not found check without '(' and ')'
            if (date.contains(timesZones[i])) {
                timeZone = timesZones[i];
                date = date.replace(timesZones[i], "");
                break;
            }
        }

        // get the month
        for (int i = 0; i < months.length; i++) {
            if (date.contains(months[i])) {
                month = months[i].toLowerCase(); // !must be lowercase
                // must be dutch on my pc
                if (month.equals("oct"))
                    month = "okt";
                if (month.equals("may"))
                    month = "mei";
                if (month.equals("mar"))
                    month = "mrt";

                date = date.replace(months[i], "");
                break;
            }
        }

        // get the year
        for (int i = 0; i < years.length; i++) {
            if (date.contains(years[i])) {
                year = years[i];
                date = date.replace(years[i], "");
                break;
            }
        }

        // get the time
        Pattern p = Pattern.compile("(\\d\\d):(\\d\\d):(\\d\\d)");
        Matcher m = p.matcher(date);
        if (m.find()) {
            // also fix the time, 00 is not allowed

            hours = Integer.parseInt(m.group(1));
            minutes = Integer.parseInt(m.group(2));
            seconds = Integer.parseInt(m.group(3));

            date = date.replaceAll("(\\d\\d:\\d\\d:\\d\\d)", "");
        }

        // get the time difference
        date = date.replace("+-", "+0"); // bug fix where data is incorrect ( 16
                                            // Sep 2007 23:27:17 +-200)

        p = Pattern.compile("[+|-]*(\\d\\d)\\d\\d");
        m = p.matcher(date);
        if (m.find()) {
            int timeDifferenceH = Integer.parseInt(m.group(1));

            date = date.replaceAll("([+|-]*\\d\\d\\d\\d)", "");
        }

        date = " " + date; // bug fix

        // get the day
        for (int i = 31; i >= 1; i--) {
            // first check for the ones that contains 2 digits (like 07)
            String d = nf(i, 2);
            if (date.contains(d)) {
                day = nf(i, 2);
                date = date.replace(d, "");
                break;
            }

            // check for 1 digit
            d = "" + i;
            if (date.contains(d)) {
                day = nf(i, 2);
                date = date.replace(d, "");
                break;
            }
        }

        // there should be nothing left except white space
        date = date.replace(" ", "");
        if (date.equals("") == false) {
            println("handleDate: problem with input\n" + date);
            println(origDate + "\n");
            println(year);
            println(month);
            println(day);
        }

        // String cleanDate = day + "/" + month + "/" + year + " " + nf(hours,
        // 2) + ":" + nf(minutes, 2) + ":" + nf(seconds, 2);
        // DateTimeFormatter formatter =
        // DateTimeFormat.forPattern("dd/MMM/yyyy HH:mm:ss");

        String cleanDate = year + "-" + month + "-" + day;
        DateTimeFormatter formatter = DateTimeFormat.forPattern("yyyy-MMM-dd");

        try {

            // DateTime dt = formatter.parseDateTime(cleanDate);
            // LocalDate dt = new LocalDate(cleanDate);
            // return dt.toLocalDate();
            // return dt;
            // return new LocalDate().parse(cleanDate, formatter);
            return formatter.parseLocalDate(cleanDate);
        } catch (IllegalArgumentException iae) {
            println("handleDate: Problem with formatting: " + cleanDate);
        }

        return null;
    }

最佳答案

JodaTime 中的 DateTimeFormatter 类在这方面非常强大且灵活,您应该尝试 Custom FormattersFreaky Formatters

关于java - 将字符串转换为日期(复杂时区),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9010982/

相关文章:

c# - 循环地将字符串分割成锯齿状数组

c - 在 C/C++ 中使用计数器变量访问字符串

javascript - 如何计算 12am 到 12am 之间的日期差?

c# - 在表单 View 中设置当前日期

java - 如何在JFrame上打印方法中的数据

java - JPanel:无法获取 JPanel 的宽度

java - 为添加到 ArrayList 的对象生成编号

java - 枚举静态方法抛出空指针异常

java - 将整数包含到字符串中

php - 日期验证的正则表达式帮助 - dd/mm/yyyy - PHP