I create a signed applet to download files from a visitor computer, I used the WildcardFileFilter class to get files starting with some line ....
To do this, I needed to include the Apacheae Common io 2.4 jar file as a library in my project. Now my applet is signed, but when I run it, it gives a warning about mixed code, as shown here.
http://docs.oracle.com/javase/6/docs/technotes/guides/jweb/mixed_code.html
Now I followed the instructions and added Trusted-Library: true in the manifest file, then it did not load this library and I got an org / apachae /...../ WildcardFileFilter error when starting the applet.
I signed this common-io_2.4.jar library file, then this warning went away, but the User requested the applet twice, which is also annoying ...
How can I get a trusted io shared file for using wildcards or any other tips ......
source share