Java PHP'nin strtotime ()

5 Cevap java

PHP strtotime () aşağıdaki değişiklikleri yapabilirsiniz:

Girişler:

strtotime(’2004-02-12T15:19:21+00:00′);
strtotime(’Thu, 21 Dec 2000 16:01:07 +0200′);
strtotime(’Monday, January 1st’);
strtotime(’tomorrow’);
strtotime(’-1 week 2 days 4 hours 2 seconds’);

Çıkışlar:

2004-02-12 07:02:21
2000-12-21 06:12:07
2009-01-01 12:01:00
2009-02-12 12:02:00
2009-02-06 09:02:41

Java bunu yapmak için kolay bir yolu var mı?

Evet, bu bir duplicate olduğunu. Ancak, özgün soru cevap değildi. Ben genellikle geçmişten tarihleri ​​sorgulamak için yetenek gerekiyor. Ben kullanıcıya 'I "-1 hafta" için "şimdi" tüm olayları istiyorum' demek için yeteneği vermek istiyorum. Bu çok daha kolay istekleri bu tür betik yapacaktır.

5 Cevap

Ben PHP'nin bir desen bazı öykünen bir basit (statik) sınıfı uygulamak için çalıştı strtotime. Bu sınıf olacak şekilde tasarlanmıştır open for modification (sadece eklemek yeni Matcher ile registerMatcher):

public final class strtotime {

    private static final List<Matcher> matchers;

    static {
        matchers = new LinkedList<Matcher>();
        matchers.add(new NowMatcher());
        matchers.add(new TomorrowMatcher());
        matchers.add(new DateFormatMatcher(new SimpleDateFormat("yyyy.MM.dd G 'at' HH:mm:ss z")));
        matchers.add(new DateFormatMatcher(new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z")));
        matchers.add(new DateFormatMatcher(new SimpleDateFormat("yyyy MM dd")));
        // add as many format as you want 
    }

    // not thread-safe
    public static void registerMatcher(Matcher matcher) {
        matchers.add(matcher);
    }

    public static interface Matcher {

        public Date tryConvert(String input);
    }

    private static class DateFormatMatcher implements Matcher {

        private final DateFormat dateFormat;

        public DateFormatMatcher(DateFormat dateFormat) {
            this.dateFormat = dateFormat;
        }

        public Date tryConvert(String input) {
            try {
                return dateFormat.parse(input);
            } catch (ParseException ex) {
                return null;
            }
        }
    }

    private static class NowMatcher implements Matcher {

        private final Pattern now = Pattern.compile("now");

        public Date tryConvert(String input) {
            if (now.matcher(input).matches()) {
                return new Date();
            } else {
                return null;
            }
        }
    }

    private static class TomorrowMatcher implements Matcher {

        private final Pattern tomorrow = Pattern.compile("tomorrow");

        public Date tryConvert(String input) {
            if (tomorrow.matcher(input).matches()) {
                Calendar calendar = Calendar.getInstance();
                calendar.add(Calendar.DAY_OF_YEAR, +1);
                return calendar.getTime();
            } else {
                return null;
            }
        }
    }

    public static Date strtotime(String input) {
        for (Matcher matcher : matchers) {
            Date date = matcher.tryConvert(input);

            if (date != null) {
                return date;
            }
        }

        return null;
    }

    private strtotime() {
        throw new UnsupportedOperationException();
    }
}

Usage

Temel kullanım:

 Date now = strtotime("now");
 Date tomorrow = strtotime("tomorrow");
Wed Aug 12 22:18:57 CEST 2009
Thu Aug 13 22:18:57 CEST 2009

Extending

Örneğin ekleyelim days matcher:

strtotime.registerMatcher(new Matcher() {

    private final Pattern days = Pattern.compile("[\\-\\+]?\\d+ days");

    public Date tryConvert(String input) {

        if (days.matcher(input).matches()) {
            int d = Integer.parseInt(input.split(" ")[0]);
            Calendar calendar = Calendar.getInstance();
            calendar.add(Calendar.DAY_OF_YEAR, d);
            return calendar.getTime();
        }

        return null;
    }
});

o zaman yazabilirsiniz:

System.out.println(strtotime("3 days"));
System.out.println(strtotime("-3 days"));

(Şimdi Wed Aug 12 22:18:57 CEST 2009 olan)

Sat Aug 15 22:18:57 CEST 2009
Sun Aug 09 22:18:57 CEST 2009

Böyle bir şey için basit Tarih biçimi kullanabilirsiniz, ancak dize ayrıştırma önce tarih biçimini bilmeniz gerekir. PHP bunu tahmin etmeye çalışın, Java ne yapacağını açıkça söyle bekliyor.

Örnek:

SimpleDateFormat parser = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
SimpleDateFormat formater = new SimpleDateFormat("MM/dd/yy");
Date d = parser.parse("2007-04-23 11:22:02");
System.out.println(formater.format(d));

Bu çıkışlar:

04/23/2007

Ayarladığınız sürece dize, uygun formatta değilse SimpleDateFormat sessizce başarısız olur:

parser.setLenient(false);

Bu durumda, bu olacak java.text.ParseException atar.

Avans biçimlendirme için, DateFormat kullanın ve operators sayıda bulunuyor.

JodaTime, i java için en iyi datetime kütüphane olduğunu düşünüyorum bak.

Bildiğim kadarıyla, bu gibi bir şey var. Bir araya kendiniz kesmek zorunda kalacak. Ancak, bu gerekli olmayabilir. Damgaları olarak tarihleri ​​depolamak ve sadece basit bir matematik yaparak deneyin. Ben bu Hoşunuza gidebilecek kadar temiz değil anlıyorum. Ama bu işe.

Bir takvim kullanın ve SimpleDateFormat ile sonuç biçimlendirmek:

http://java.sun.com/j2se/1.5.0/docs/api/java/util/Calendar.html

    Calendar now = Calendar.getInstance();
    Calendar working;
    SimpleDateFormat formatter = new SimpleDateFormat("E yyyy.MM.dd 'at' hh:mm:ss a zzz");

    working = (Calendar) now.clone();

    //strtotime("-2 years")
    working.add(Calendar.DAY_OF_YEAR, - (365 * 2));
    System.out.println("  Two years ago it was: " + formatter.format(working.getTime()));

    working = (Calendar) now.clone();

    //strtotime("+5 days");
    working.add(Calendar.DAY_OF_YEAR, + 5);
    System.out.println("  In five days it will be: " + formatter.format(working.getTime()));

Güzel, bu PHP'nin strtotime () önemli ölçüde daha fazla ayrıntılı, ama günün sonunda, sonra konum işlevselliği.