浏览代码

test integration fix

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1793733 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_17_BETA1
Andreas Beeker 7 年前
父节点
当前提交
3c69708b20
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java

+ 3
- 1
src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java 查看文件

@@ -401,11 +401,13 @@ public class CopyCompare
final String name,
final DocumentInputStream stream)
throws IOException {
// create the directories to the document
final DirectoryEntry de = getPath(poiFs, path);
// check the parameters after the directories have been created
if (stream == null || name == null) {
// Empty directory
return;
}
final DirectoryEntry de = getPath(poiFs, path);
final ByteArrayOutputStream out = new ByteArrayOutputStream();
int c;
while ((c = stream.read()) != -1) {

正在加载...
取消
保存