private static Iterable<String> getAttrNames(InputStream is, XPathExpression expr) {
Set<String> names = Sets.newHashSet();
if (expr != null) {
try {
Document doc = parseStream(is);
if (doc != null) {
NodeList nodelist = (NodeList) expr.evaluate(doc, XPathConstants.NODESET);
for (int i = 0; i < nodelist.getLength(); i++) {
String name = nodelist.item(i).getNodeValue();
names.add(name);
}
}
} catch (XPathExpressionException ex) {
LOG.log(Level.WARNING, null, ex);
}
}
return names;
}
ManifestParser.java 文件源码
java
阅读 27
收藏 0
点赞 0
评论 0
项目:NBANDROID-V2
作者:
评论列表
文章目录