1

当我阅读 MS Word 文档标题 (.doc) 时,我得到了这个异常:

"A property claimed to start before zero, at -512! Resetting it to zero, and hoping for the best"

我使用这个库poi-scratchpad-3.2-final-20081019,我使用这个代码来阅读:

import java.io.*;
import org.apache.poi.hwpf.HWPFDocument;
import org.apache.poi.hwpf.extractor.WordExtractor;

public class ReadDocFile {
public static void main(String[] args) {
File file = null;
WordExtractor extractor = null ;
try {

   file = new File("c:\\New.doc");
   FileInputStream fis=new FileInputStream(file.getAbsolutePath());
   HWPFDocument document=new HWPFDocument(fis);
   extractor = new WordExtractor(document);
   String [] fileData = extractor.getParagraphText();
   for(int i=0;i<fileData.length;i++){
     if(fileData[i] != null)
       System.out.println(fileData[i]);
   }
}
catch(Exception exep){}
  }
}
4

1 回答 1

3

此错误是由poi 文件引起的:

protected PropertyNode(int fcStart, int fcEnd, Object buf)
{
    _cpStart = fcStart;
    _cpEnd = fcEnd;
    _buf = buf;

    if(_cpStart < 0) {
        _logger.log(POILogger.WARN, "A property claimed to start before zero, at " + _cpStart + "! Resetting it to zero, and hoping for the best");
      _cpStart = 0;
    }
    //more code

正如您在代码中看到的,当 _cpStart 小于 0 时,记录器会创建此错误,在您的情况下为:-512。这意味着使用 fcStart = -512 调用 PropertyNode 方法。

至于用 -512 来称呼它:

-512 源自在 org.apache.poi.hwpf.model 中完成的计算。CHPFormattedDiskPage,其中 getStart(x) 返回 1536,fcMin 为 2048。

摘自:错误报告

当您创建 HWPFDocument 的实例时会记录此警告,并且是一个不会影响功能的已知错误(因为 _cpStart 设置为 0)。

于 2013-07-01T20:56:12.217 回答