我的类文件的文件夹结构是这样的:
.. classes/
chartplottingview/(class files here belongs to chartplottingview package)
chartplottingmodel/(somes class files here belong to chartplottingmodel package)
chartplottingcontroller/(somes class files here belong to chartplottingcontroller package)
chartplottingmain/Main.class belongs to chartplottingmain package
主要课程在:
chartplottingmain/Main.class
所以,在窗口命令行,停留在文件夹...类,我创建了这样的 jar 文件:
jar cfe chart.jar chartplottingmain/chartplottingmain.Main chartplottingmain/Main.class chartplottingview/filename.class so on...
我的问题是:这是创建 jar 文件的正确方法吗,因为当我构建 jar 文件(与 Java 小程序一起使用)时,小程序不起作用?