I am using the terminal to execute java code. Here is something similar to what I would type.
java -jar mycode.jar http://mysite.com/1.1.1/myothercode.jar
The stuff after mycode.jar is an argument that is sent into the main() function of my code. This is standard java practice.
My...