You could go for the fat-jar approach.
You can see it here if you use ant.
If have a maven project you could have this plugin to create a fat-jar
The benefit of a fat-jar application is that you could have everything inside one jar and don't need to worry with the lib dir like it was mentioned in another answer.
Also be careful with hard-coded paths like:
String
strurl="jdbc:ucanaccess://C:\\Users\\Paul\\Desktop\\Spelli\\RispostiDB.mdb";
that you have in your code.