I really have no clue what you are talking about, but normally when I use java I just put embed it, not execute it.
I don't know if this is what you want, nor if it will work, but you can execute programs on your server by going :
[php
exec(path/to/program);
//or
system(path/to/program);
[/php]
Depending on what your host allows, you may only be able to use both, one, or all of them.
Good luck 
-Jason
|