2017-10-05 114 views
-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++; 
    } 
} 

}

+1

您的文件不在該文件夾中。就那麼簡單。 –

+0

您應該更改文件所在的文件夾,然後再試一次 –

回答

0

你必須知道你的文件的路徑和類型:

示例文件在桌面上:

鍵入CMD:

CD C:\Users\TGDD\Desktop 
javac Undo.java 

你必須確切地知道你的文件路徑是否運行這個。