请看看我做了什么
private InputSource getContent(String fName) throws SAXException, IOException, ServiceException {
// Some code here
if(currentNodeRef != null)
{
ContentReader reader = contentService.getReader(currentNodeRef,ContentModel.PROP_CONTENT);
InputStream inputStream = null;
try
{
inputStream = new BufferedInputStream(reader.getContentInputStream(),16384);
return new InputSource(inputStream);
}
finally
{
if(inputStream!=null)
try
{
inputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
return new InputSource();
}
在我的parseDocument方法中,我调用了上面的方法。
parseDocRoot(getContent(fName),path);
在parseDocRoot
中public void parseDocRoot (InputSource ins, String path) throws SAXException, IOException,
ParserConfigurationException, ServiceException
{
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
builder.setEntityResolver(new EntityResolver() {
public InputSource resolveEntity(String publicId, String systemId)
throws SAXException, IOException {
return new InputSource(new ByteArrayInputStream(new byte[0]));
}
});
Document doc = builder.parse(ins);
NodeList list = doc.getChildNodes();
parseDocument(list,path);
}
我收到错误说没有关闭Stream并且在调试上面的代码时我发现错误就行了
Document doc = builder.parse(ins);
请帮我找到解决方案。
答案 0 :(得分:5)
我认为错误是 流已关闭。原因是你有一个finally块:
try
{
inputStream = new BufferedInputStream(reader.getContentInputStream(),16384);
return new InputSource(inputStream);
}
finally
{
if(inputStream!=null)
try
{
inputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
你关闭 finally块中的流。此代码在从方法返回之前立即执行。重要的是,在方法返回并由parse
方法处理之前,InputStream不会消耗。
您应该将finally块放在整个代码块周围 - 在实际完成时关闭流。最简单的方法是内联getContent
方法并在调用parse
后放入finally块。在你这样做之后,你或许可以找到一种方法来封装那个逻辑,但它会有点棘手,因为你必须保持一个InputStream句柄,直到你完成解析,这样你就可以关闭它。
另一个更简单的选择是让getContent
返回Document
,而只需在该方法中移动parseDocRoot(getContent(fName),path);
。