我创建了一个自定义jar文件,目的是学习如何构建自己的jar文件。所以,基本上,它是一个hello world jar。我按照URL的步骤进行操作。以下是我的计划:
public class TEST_JAR {
public static void main(String[] args){
}
public void helloWorld(){
System.out.println("This the new JAR WORLD!!");
}
}
这是Manifest.txt文件:
Manifest-Version: 1.0
Created-By: 1.8.0_111 (Oracle Corporation)
Main-Class: TEST_JAR
JAR文件正在成功创建。但是当我在另一个应用程序中使用它时,import语句没有显示要导入的类文件。我正在使用IntelliJ-IDEA。
关于出了什么问题的任何线索?