From 3852b117864dc6e146b2cc924487008ecb2be50f Mon Sep 17 00:00:00 2001 From: Said Ryan Ackley Date: Mon, 21 Jul 2003 03:29:24 +0000 Subject: [PATCH] fixed git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353234 13f79535-47bb-0310-9956-ffa450edef68 --- .../testcases/org/apache/poi/hwpf/HWPFDocFixture.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java b/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java index dd6a0ffe3..12dd34d79 100644 --- a/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java +++ b/src/scratchpad/testcases/org/apache/poi/hwpf/HWPFDocFixture.java @@ -6,6 +6,7 @@ import org.apache.poi.poifs.filesystem.POIFSFileSystem; import org.apache.poi.poifs.filesystem.DocumentEntry; import org.apache.poi.hwpf.model.hdftypes.*; +import java.io.File; public class HWPFDocFixture @@ -23,14 +24,17 @@ public class HWPFDocFixture { try { - - String filename = System.getProperty("HSSF.testdata.path"); + String filename = System.getProperty("HWPF.testdata.path"); + if (filename == null) + { + filename = "c:"; + } filename = filename + "/test.doc"; POIFSFileSystem filesystem = new POIFSFileSystem(new FileInputStream( - "C:\\test.doc")); + new File(filename))); DocumentEntry documentProps = (DocumentEntry) filesystem.getRoot().getEntry("WordDocument");