自从我编写任何程序以来已经有好几年了,但是我编写了这个小程序来帮助解决我们在工作中遇到的问题。我做了一些关于如何制作 jar 文件的作业并按照这些步骤操作。当我尝试执行创建的 jar 文件时,什么也没有发生。有人可以指出我正确的方向吗?
源代码:
import java.io.*;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
public class CardOutput
{
public static void main(String[] args) throws IOException
{
String inputA;
JFrame parent = new JFrame();
boolean truth = true;
while(truth)
{
inputA = JOptionPane.showInputDialog("Please Swipe Card");
if(inputA.length() == 0)
{
truth = false;
}
else if(inputA.length() != 14)
{
inputA = JOptionPane.showInputDialog("Invalid Card Number \n" + "Please Swipe Card");
}
else
{
JOptionPane.showMessageDialog(parent, "Your Card Number is " + inputA.substring(4,13));
}
}
JOptionPane.showMessageDialog(parent, "Program is now ending");
System.exit(0);
}
}
清单文件行: Main-Class:CardOutput.class
我为形成 .jar 文件而创建的批处理文件:
@ECHO OFF
C:
CD "C:\Users\timmcj\Desktop\CardOutput
"C:\Program Files\Java\JDK1.7.0_09\bin\jar.exe" cvfm CardOutput.jar manifest.txt *.class
PAUSE