我正在尝试创建一个可执行的.jar文件。我创建它,当我运行它时,它给我以下错误==>
无法从中加载Main-Class清单属性 C:\用户\ Anastasov \桌面\ Test.jar的
其中C:\ Users \ Anastasov \ Desktop \ test.jar是我的.jar文件的目录和名称 jar文件是test.jar。我顺便关注本教程 http://www.youtube.com/watch?v=hwVuK0X-0P0
以下是我所做的步骤:==> 所以我首先编译我的类,而不是创建myManifest.txt并指定主类的位置,它在Jdialogs.java中,最后我用cmd编写:
jar cfm test.jar myManifest.txt Jdialogs.class
然后创建test.jar并从顶部给我错误。如果有人熟悉它并且可以帮助它将被赞赏干杯 这是我的Jdialogs.java代码
//Jdialogs.java
//19.02.12
import javax.swing.JOptionPane;
class Jdialogs
{
public static void main(String[] args)
{
// JOptionPane.showMessageDialog(null, message, titile is a string, messageType can be error info warning...);
int answer;
do
{
answer = JOptionPane.showConfirmDialog(null, "Can you see this dialog ?");
// do something with the asnwer
JOptionPane.showMessageDialog(null, "The confirm returned=" + answer,
"Confirm Value", JOptionPane.INFORMATION_MESSAGE );
answer = JOptionPane.showConfirmDialog(null, "Rerun dmeo?", "Confirm Demo", JOptionPane.YES_NO_OPTION);
System.out.println("Debug: Rerun Demo - Answer: " + answer);
}while (answer == JOptionPane.YES_OPTION);
}
}
答案 0 :(得分:1)
jar cfe test.jar Jdialogs Jdialogs.class
应创建右-e入口点。