本文整理汇总了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);
}
示例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");
}
}
}