解析在波兰的语言环境日期乔达?(Parsing date in polish locale in J

2019-10-21 05:49发布

我有以下几种日期:

例如。 String rawDate = "pon, 17 lis 2014, 15:51:12";

我想解析它。

我打电话:

DateTime time = new DateTimeFormatterBuilder()
                    .append(DateTimeFormat.forPattern("EEE, dd MMM yyyy, HH:mm:ss")
                            .getParser())
                    .toFormatter().withLocale(new Locale("pl")).parseDateTime(rawDate);

但我得到:

java.lang.IllegalArgumentException: Invalid format: "pon, 17 lis 2014, 15:51:12"

Answer 1:

好问题!

JDK中使用它自己的文本资源。 所以,下面的Java-8编码产生的异常:

String input = "pon, 17 lis 2014, 15:51:12";

DateTimeFormatter dtf1 = 
  DateTimeFormatter.ofPattern("EEE, dd MMM yyyy, HH:mm:ss", new Locale("pl"));
LocalDateTime ldt1 = LocalDateTime.parse(input, dtf1);
System.out.print(ldt1);
// error message:
// java.time.format.DateTimeParseException:
// Text 'pon, 17 lis 2014, 15:51:12' could not be parsed at index 0

如果我们试图找出是什么原因呢,我们发现,JDK使用“PN”:

DateTimeFormatter dtf1 = 
  DateTimeFormatter.ofPattern("EEE, dd MMM yyyy, HH:mm:ss", new Locale("pl"));
String output = LocalDateTime.of(2014, 11, 17, 15, 51, 12).format(dtf1);
System.out.println(output); // "Pn, 17 lis 2014, 15:51:12"
LocalDateTime ldt1 = LocalDateTime.parse(output, dtf1);

通常人们不能改变输入。 幸运的是,定义你自己的文本资源的解决方法:

String input = "pon, 17 lis 2014, 15:51:12";

TemporalField field = ChronoField.DAY_OF_WEEK;
Map<Long,String> textLookup = new HashMap<>();
textLookup.put(1L, "pon");
textLookup.put(2L, "wt");
textLookup.put(3L, "\u0347r"); // śr
textLookup.put(4L, "czw");
textLookup.put(5L, "pt");
textLookup.put(6L, "sob");
textLookup.put(7L, "niedz");

DateTimeFormatter dtf2 = 
  new DateTimeFormatterBuilder()
  .appendText(field, textLookup)
  .appendPattern(", dd MMM yyyy, HH:mm:ss")
  .toFormatter()
  .withLocale(new Locale("pl"));
LocalDateTime ldt2 = LocalDateTime.parse(input, dtf2);
System.out.print(ldt2);
// output: 2014-11-17T15:51:12

好了,现在约(旧) 乔达时间 。 它缺少像这样的方法appendText(field, lookupMap) 但是,我们可以写一个实现DateTimeParser

  final Map<String, Integer> textLookup = new HashMap<String, Integer>();
  textLookup.put("pon", 1);
  textLookup.put("wt", 2);
  textLookup.put("\u0347r", 3); // śr
  textLookup.put("czw", 4);
  textLookup.put("pt", 5);
  textLookup.put("sob", 6);
  textLookup.put("niedz", 7);

  DateTimeParser parser =
    new DateTimeParser() {
    @Override
    public int estimateParsedLength() {
        return 5;
    }
    @Override
    public int parseInto(DateTimeParserBucket bucket, String text, int position) {
        for (String key : textLookup.keySet()) {
            if (text.startsWith(key, position)) {
                int val = textLookup.get(key);
                bucket.saveField(DateTimeFieldType.dayOfWeek(), val);
                return position + key.length();
            }
        }
        return ~position;
    }
  };
  DateTimeFormatter dtf =
    new DateTimeFormatterBuilder().append(parser)
    .appendPattern(", dd MMM yyyy, HH:mm:ss").toFormatter()
    .withLocale(new Locale("pl"));
  String input = "pon, 17 lis 2014, 15:51:12";
  LocalDateTime ldt = LocalDateTime.parse(input, dtf);
  System.out.println(ldt); // 2014-11-17T15:51:12.000

最后一个问题给你:在Unicode的CLDR数据点的缩写工作日名称的后面使用,例如“PON”。 而不是“PON”的(我自己的图书馆使用CLDR的内容,太)。 请问按照有关擦亮你的语言知识和感觉是比较常见? 使用点不?



Answer 2:

显然,乔达时间(或Java)可治疗poniedziałek的缩写形式为pn,不PON - 所以此代码的工作(和稍微简单比你的):

import org.joda.time.*;
import org.joda.time.format.*;
import java.util.*;

public class Test {
    public static void main(String[] args) throws Exception {
        String rawDate = "pn, 17 lis 2014, 15:51:12";
        DateTimeFormatter parser = DateTimeFormat
            .forPattern("EEEE, dd MMM yyyy, HH:mm:ss")
            .withLocale(new Locale("pl"));
        DateTime time = parser.parseDateTime(rawDate);
        System.out.println(time);
    }
}

如果你不能改变你的输入,或许你可以改变的语言环境相关联的符号?



文章来源: Parsing date in polish locale in Joda?