本文整理汇总了Java中org.dom4j.io.SAXReader.setEncoding方法的典型用法代码示例。如果您正苦于以下问题:Java SAXReader.setEncoding方法的具体用法?Java SAXReader.setEncoding怎么用?Java SAXReader.setEncoding使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.dom4j.io.SAXReader
的用法示例。
在下文中一共展示了SAXReader.setEncoding方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: parse
import org.dom4j.io.SAXReader; //导入方法依赖的package包/类
/**
* 解析测试套件配置文件
* @param suiteInputStream 配置文件输入流
* @return 测试套件对象
* @throws DocumentException
*/
public Suite parse(InputStream suiteInputStream) throws DocumentException
{
SAXReader reader = new SAXReader();
reader.setEncoding("utf-8");
Document document = reader.read(suiteInputStream);
simpleNamespaceContext.addNamespace("ns", NS_URI);
XPath xpath = new DefaultXPath("/ns:suite");
xpath.setNamespaceContext(simpleNamespaceContext);
Element suiteEle = (Element) xpath.selectSingleNode(document);
if (suiteEle == null)
{
suiteEle = document.getRootElement();
// throw new RuntimeException("Can not found suite config.");
}
Suite suite = new Suite();
String xmlConfPath = suiteEle.attributeValue("pageConfig");
String pagePackage = suiteEle.attributeValue("pagePackage", "");
String rows = suiteEle.attributeValue("rows", "1");
String lackLines = suiteEle.attributeValue("lackLines", "nearby");
String errorLines = suiteEle.attributeValue("errorLines", "stop");
String afterSleep = suiteEle.attributeValue("afterSleep", "0");
suite.setXmlConfPath(xmlConfPath);
suite.setPagePackage(pagePackage);
suite.setRows(rows);
suite.setLackLines(lackLines);
suite.setErrorLines(errorLines);
suite.setAfterSleep(Long.parseLong(afterSleep));
pagesParse(document, suite);
return suite;
}
示例2: afterPropertiesSet
import org.dom4j.io.SAXReader; //导入方法依赖的package包/类
public void afterPropertiesSet() throws Exception {
saxReader = new SAXReader();
saxReader.setEncoding("UTF-8");
httpClient = HttpClientUtils.getHttpClient();
// HttpClientUtils.testWithProxy(httpClient);
}