WATHELET Thomas wrote: > High, > I'm using poi-3.0.1-FINAL-20070705 and I try to extract the content of a > word document with this method : [snip] > And I retrived this error: > Exception in thread "main" java.lang.StackOverflowError > at org.apache.poi.hwpf.model.StyleSheet.createChp(StyleSheet.java:266) > at org.apache.poi.hwpf.model.StyleSheet.createChp(StyleSheet.java:277) [snip] > > What's happened?
hi, The createChp method is recursive, and went into an infinite self calling loop. Either you have a valid Word file and the implementation of createChp is incorrect, or your Word file is not really valid. (Is it a "genuine Word file"?) If you like, you can send the file to my email address and I take a look at it. Probably (I hope) I can identify which case it is and what to do about it. Best wishes, Rainer -- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
