-2
通過cmd運行文件.java時遇到了問題。當我跑,它出現像這樣的錯誤[1]:https://i.stack.imgur.com/mpMwi.png [1] 感謝您的幫助。 順便說一句,這是我的代碼通過CMD運行Java文件時找不到錯誤文件
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
Stack s1 = new Stack();
Stack s2 = new Stack();
int i = 1;
while (i < 10)
{
s1.push(i);
i++;
}
}
public void KeyPress (KeyEvent undo, Stack s1, Stack s2)
{
if(undo.getKeyCode() == KeyEvent.VK_Z){
s1.pop();
int j = 1;
s2.push(j);
j++;
}
}
}
您的文件不在該文件夾中。就那麼簡單。 –
您應該更改文件所在的文件夾,然後再試一次 –