DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=36416>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=36416


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WORKSFORME




------- Additional Comments From [EMAIL PROTECTED]  2005-09-04 19:13 -------
I've just tried to open your test file, and it worked flawlessly. No problems,
no exceptions. A call to extractor.getText() correctly returns your test 
strings.

I think you must have some older POI jar files kicking around on your classpath,
and that's what's causing your issues.

Try running the following program - it'll tell you exactly where you are picking
up POI from:

import org.apache.poi.hslf.extractor.*;
public class TestWherePPT {
        public static void main(String[] args) throws Exception {
                Class extractorClass = PowerPointExtractor.class;
                ClassLoader loader = extractorClass.getClassLoader();
                String extractorFrom =
loader.getResource("org/apache/poi/hslf/extractor/PowerPointExtractor.class").toString();
                String hpsfFrom =
loader.getResource("org/apache/poi/hpsf/PropertySet.class").toString();
                System.out.println(extractorFrom);
                System.out.println(hpsfFrom);
        }
}


Until the output of both is just the new JAR files you downloaded, you'll have
problems!

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:    http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/

Reply via email to