當前位置: 首頁>>代碼示例>>Java>>正文


Java MessageFormat.parse方法代碼示例

本文整理匯總了Java中java.text.MessageFormat.parse方法的典型用法代碼示例。如果您正苦於以下問題:Java MessageFormat.parse方法的具體用法?Java MessageFormat.parse怎麽用?Java MessageFormat.parse使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.text.MessageFormat的用法示例。


在下文中一共展示了MessageFormat.parse方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: parse

import java.text.MessageFormat; //導入方法依賴的package包/類
public static HighlightImpl parse(StyledDocument doc, String line) throws ParseException, BadLocationException {
    MessageFormat f = new MessageFormat("[{0}], {1,number,integer}:{2,number,integer}-{3,number,integer}:{4,number,integer}");
    Object[] args = f.parse(line);
    
    String attributesString = (String) args[0];
    int    lineStart  = ((Long) args[1]).intValue();
    int    columnStart  = ((Long) args[2]).intValue();
    int    lineEnd  = ((Long) args[3]).intValue();
    int    columnEnd  = ((Long) args[4]).intValue();
    
    String[] attrElements = attributesString.split(",");
    List<ColoringAttributes> attributes = new ArrayList<ColoringAttributes>();
    
    for (String a : attrElements) {
        a = a.trim();
        
        attributes.add(ColoringAttributes.valueOf(a));
    }
    
    if (attributes.contains(null))
        throw new NullPointerException();
    
    int offsetStart = NbDocument.findLineOffset(doc, lineStart) + columnStart;
    int offsetEnd = NbDocument.findLineOffset(doc, lineEnd) + columnEnd;
    
    return new HighlightImpl(doc, offsetStart, offsetEnd, attributes);
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:28,代碼來源:HighlightImpl.java

示例2: testParse

import java.text.MessageFormat; //導入方法依賴的package包/類
private static void testParse() throws ParseException {
    StringBuffer parseTemplate = new StringBuffer();
    StringBuffer parseInput = new StringBuffer();
    for (int i = 0; i < REPEATS; i++) {
        parseTemplate.append("{" + i + ", number} ");
        parseInput.append(i + " ");
    }
    MessageFormat parseFormat = new MessageFormat(parseTemplate.toString());
    Object[] parseResult = parseFormat.parse(parseInput.toString());
    for (int i = 0; i < REPEATS; i++) {
        if (((Number) parseResult[i]).intValue() != i) {
            throw new RuntimeException("got wrong parse result");
        }
    }
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:16,代碼來源:LargeMessageFormat.java


注:本文中的java.text.MessageFormat.parse方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。