所以我做了一个超级简单的文件,然后把它上传到我的服务器上:
http://myServer:8080/testApp/
其中有 testApp.jar 和一个充当 bin 的文件夹。我已经尝试了一些方法来解决这个问题,但我不断收到:线程“main”中的异常 java.lang.ClassNotFoundException: com.testApp.Main
The full path to Main.Class is http://myserver:8080/testApp/com/myCom/Main.Class
我找到这个的代码是
URLClassLoader loader = new URLClassLoader(new URL[]{new File("http://myserver04:8080/testApp/").toURI().toURL()});
Class<?> mainClass = loader.loadClass("com.myCom.Main");
Method mainMethod = mainClass.getMethod("main", String[].class);
mainMethod.invoke(null, new String[]{});
}
我的最终目标只是运行该文件的主要方法,并且正在启动的文件将有一个简单的“Hello World”摆动窗口。
谢谢