Thursday, June 11, 2026
HomeLanguagesJavaCollator getCollationKey() method in Java with Example

Collator getCollationKey() method in Java with Example

The getCollationKey() method of java.text.Collator class is used to get the series of bit converted from string passed into it.

Syntax: 

public abstract CollationKey
       getCollationKey(String source)

Parameter: This method accepts the string object as a parameter.
Return Value: This method returns the series of bit converted from the string passed into it.

Below are the examples to illustrate the getCollationKey() method:

Example 1:  

Java




// Java program to demonstrate
// getCollationKey() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        try {
 
            // Creating and initializing
            // new simple rule
            String simple
                = "< a < b < c < d";
 
            // Creating and initializing
            // new RuleBasedCollator Object
            RuleBasedCollator col
                = new RuleBasedCollator(simple);
 
            // getting series of bits
            // using getCollationKey() method
            CollationKey key
                = col.getCollationKey("Geek");
 
            // display result
            System.out.println(
                "Series of bits are :- "
                + key.getSourceString());
        }
 
        catch (ClassCastException e) {
 
            System.out.println("Exception thrown : " + e);
        }
        catch (ParseException e) {
 
            System.out.println("Exception thrown : " + e);
        }
    }
}


Output: 

Series of bits are :- Geek

 

Example 2: 

Java




// Java program to demonstrate
// getCollationKey() method
 
import java.text.*;
import java.util.*;
import java.io.*;
 
public class GFG {
    public static void main(String[] argv)
    {
        try {
 
            // Creating and initializing
            // Collator Object
            Collator col
                = Collator.getInstance(Locale.UK);
 
            // getting series of bits
            // using getCollationKey() method
            CollationKey key
                = col.getCollationKey("CodeBlock");
 
            // display result
            System.out.println(
                "Series of bits are :- "
                + key.getSourceString());
        }
 
        catch (ClassCastException e) {
 
            System.out.println("Exception thrown : " + e);
        }
    }
}


Output: 

Series of bits are :- CodeBlock

 

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/Collator.html#getCollationKey-java.lang.String-
 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6896 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS