I need to read the file, that is inside the jar folder in this way:
DataSource coverdata = new FileDataSource(new File("here is the path"));
How do I get the exact path? I am using a library, so the only way I can acces file is new File(), no inputstreams.
DataSource" Can you vague that up for me? Is that ajavax.activation.DataSource, ajavax.sql.DataSource, or something else? "I am using a library, so the only way I can acces file is new File(), no inputstreams." Sounds like you need to get them to fix their API. Either that or use a different one. – Andrew Thompson Jul 24 '11 at 9:04