My applet uses JDBC (mysql-connector-java-3.1.13), but is it possible to start applet from html and tell him that where the needed .jar file is located?
I uploaded this whole JDBC directory to the my web folder, but applet was not able to find it.
If I start my java file from bat file, I have to use something like that:
But how can I do it when executing my applet from htmlr?Quote:
SET CLASSPATH=.;%lib\%lib\jarname.jar;
java filename -classpath %CLASSPATH%s
