-3

Possible Duplicate:
the problems with read Doc or Docx file in java

I'm have a problems with programs read file word in java.Then I run programs,it's report error as follows:java.lang.NoClassDefFoundError: org/apache/poi/hwpf/HWPFDocument at java.lang.Class.getDeclaredMethods0(Native Method) at java.lang.Class.privateGetDeclaredMethods(Class.java:2442)....

Community
  • 1
  • 1

1 Answers1

1

java.lang.NoClassDefFoundError: org/apache/poi/hwpf/HWPFDocument

This is telling you that somewhere in your code, you need org.apache.poit.hwpf.HWPFDocument, and that class isn't available on your system. It appears to be part of Apache POI which you can download here.

Brendan Long
  • 53,280
  • 21
  • 146
  • 188