user1683695
user1683695

Reputation: 1

the problems with read Doc or Docx file in java netbeans

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)....

Upvotes: -3

Views: 771

Answers (1)

Brendan Long
Brendan Long

Reputation: 54232

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.

Upvotes: 1

Related Questions