当前位置: 首页>>代码示例>>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;未经允许,请勿转载。