18

从一种语言到另一种语言,用数字对字符串进行排序是不同的。例如,在升序排序中,英文数字排在字母之前。但是,在德语中,数字在字母之后按升序排序。

我尝试使用 a 对字符串进行排序Collator,如下所示:

private Collator collator = Collator.getInstance(Locale.GERMANY);
collator.compare(str1, str2)

但是上面的比较没有考虑字母规则之后的数字。

有没有人知道为什么Java暂时没有考虑到这个规则(字母后的数字),我正在使用RuleBasedCollator如下:

private final String sortOrder = "< a, A < b, B < c, C < d, D < e, E < f, F < g, G < h, H < i, I < j, J < k, K < l, L < m, M < n, N < o, O < p, P < q, Q < r, R < s, S < t, T < u, U < v, V < w, W < x, X < y, Y < z, Z < 0 < 1 < 2 < 3 < 4 < 5 < 6 < 7 < 8 < 9";

private Collator collator = new RuleBasedCollator(sortOrder);
4

1 回答 1

14

您可以检查/调试源代码以查看为什么没有任何变化:

Collator.getInstance(Locale.GERMANY);

调用以下代码:

public static synchronized
Collator getInstance(Locale desiredLocale)
{
    // Snipping some code here
    String colString = "";
    try {
        ResourceBundle resource = LocaleData.getCollationData(desiredLocale);

        colString = resource.getString("Rule");
    } catch (MissingResourceException e) {
        // Use default values
    }
    try
    {
        result = new RuleBasedCollator( CollationRules.DEFAULTRULES +
                                        colString,
                                        CANONICAL_DECOMPOSITION );
    }
// Snipping some more code here

在这里,您可以看到特定规则(colString无论如何在您的情况下都是空的)放置默认值 ( CollationRules.DEFAULTRULES) 之后。

正如您发现的那样,默认值将数字放在首位:

  // NUMERICS

    + "<0<1<2<3<4<5<6<7<8<9"
    + "<\u00bc<\u00bd<\u00be"   // 1/4,1/2,3/4 fractions

    // NON-IGNORABLES
    + "<a,A"
    + "<b,B"
    + "<c,C"
    + "<d,D"
于 2012-11-23T14:55:29.913 回答