revert previous commit because it causes problems with other old .docs
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1001726 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
286b682cdc
commit
6d03a80070
@ -60,8 +60,8 @@ public final class OldSectionTable extends SectionTable
|
|||||||
// section properties, and we're trying to decode them as if they
|
// section properties, and we're trying to decode them as if they
|
||||||
// were the new ones, we sometimes "need" more data than we have.
|
// were the new ones, we sometimes "need" more data than we have.
|
||||||
// As a workaround, have a few extra 0 bytes on the end!
|
// As a workaround, have a few extra 0 bytes on the end!
|
||||||
byte[] buf = new byte[sepxSize+4];
|
byte[] buf = new byte[sepxSize+2];
|
||||||
fileOffset += 4;
|
fileOffset += LittleEndian.SHORT_SIZE;
|
||||||
System.arraycopy(documentStream, fileOffset, buf, 0, buf.length);
|
System.arraycopy(documentStream, fileOffset, buf, 0, buf.length);
|
||||||
_sections.add(new SEPX(sed, startAt, endAt, charConv, buf));
|
_sections.add(new SEPX(sed, startAt, endAt, charConv, buf));
|
||||||
}
|
}
|
||||||
|
@ -274,16 +274,6 @@ public final class TestWordExtractor extends TestCase {
|
|||||||
assertEquals("Last (4th) paragraph.\r\n", tp[6]);
|
assertEquals("Last (4th) paragraph.\r\n", tp[6]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testWord95err() throws Exception {
|
|
||||||
// Can work with the special one
|
|
||||||
Word6Extractor w6e = new Word6Extractor(
|
|
||||||
POIDataSamples.getDocumentInstance().openResourceAsStream("word95err.doc")
|
|
||||||
);
|
|
||||||
String text = w6e.getText();
|
|
||||||
|
|
||||||
assertTrue(text.contains("subject"));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void testWord6() throws Exception {
|
public void testWord6() throws Exception {
|
||||||
// Too old for the default
|
// Too old for the default
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user