0
我知道這是一個noob程序,但我慢慢地感到困惑。 '下'功能將像CD一樣行事,「上」功能將像CD一樣行事。如何繼續製作 - BlueJ Java文件管理器
我不知道如何讓用戶創建文件或文件夾。我試圖使用arrayLists而不是數組,但無法排除錯誤。任何幫助,將不勝感激。
import java.util.Scanner;
class FileManager {
//array of arrays will go here
String Dir[] = {"UserOne"};
String SystemFolders [] = {"Documents","","",};
String SubFiles [] = {"","","","","",""};
String Nav [][] = { Dir, SystemFolders, SubFiles};
int levelCounter = 0;
public void main(String[]args) {
Scanner sc = new Scanner (System.in);
System.out.println("Enter a command");
String command = sc.next();
if (command.compareTo("down") == 0)
down();
//else if is on the way
}
void down() {
//This will execute when the command is 'down'
System.out.println(Nav[++levelCounter]);
}
void up() {
//This will execute when the command is 'up'. It acts like cd..
System.out.println(Nav[--levelCounter]);
}
}