當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Collator setStrength()用法及代碼示例


java.text.Collat​​or類的setStrength()方法用於設置Collat​​or對象的強度屬性,該屬性將在比較兩個字符串時幫助該對象。

用法:

public void setStrength(int newStrength)

參數:此方法接受Collat​​or對象的強度屬性作為參數,這將在比較期間幫助此對象。


返回值:此方法無返回值。

下麵是說明setStrength()方法的示例:

範例1:

// Java program to demonstrate 
// setStrength() 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); 
  
            // setting strength property for the Collator object 
            // using getStrength() mehtod 
            col.setStrength(Collator.IDENTICAL); 
  
            // getting strength property 
            int strength = col.getStrength(); 
  
            // display result 
            if (strength == 0) 
                System.out.println( 
                    "current strength"
                    + " property:- PRIMARY."); 
            else if (strength == 1) 
                System.out.println( 
                    "current strength"
                    + " property:- SECONDARY."); 
            else if (strength == 2) 
                System.out.println( 
                    "current strength"
                    + " property:-  TERTIARY."); 
            else
                System.out.println( 
                    "current strength"
                    + " property:- IDENTICAL."); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
        catch (ParseException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
輸出:
current strength property:- IDENTICAL.

範例2:

// Java program to demonstrate 
// setStrength() 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); 
  
            // setting strength property 
            // for the Collator object 
            // using getStrength() mehtod 
            col.setStrength(Collator.PRIMARY); 
  
            // getting strength property 
            int strength = col.getStrength(); 
  
            // display result 
            if (strength == 0) 
                System.out.println( 
                    "current strength"
                    + " property:- PRIMARY."); 
            else if (strength == 1) 
                System.out.println( 
                    "current strength"
                    + " property:- SECONDARY."); 
            else if (strength == 2) 
                System.out.println( 
                    "current strength"
                    + " property:-  TERTIARY."); 
            else
                System.out.println( 
                    "current strength"
                    + " property:- IDENTICAL."); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
輸出:
current strength property:- PRIMARY.

參考: https://docs.oracle.com/javase/9/docs/api/java/text/Collator.html#setStrength-int-



相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Collator setStrength() method in Java with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。