我有這樣的代碼,它從給定的文件路徑中讀取一個文件。 我已經硬編碼F://dom.txt。我需要用戶輸入該文件路徑。 我應該怎麼做?由於如何在FileReader上輸入filePath
import java.io.BufferedReader;
import java.io.FileReader;
public class BuffReader extends Converter {
private static BufferedReader br() throws FileNotFoundException{
return new BufferedReader(new FileReader("F://dom.txt")); //<--filepath
}
static String strTem;
public static String readData(String Message){
try{
System.out.print(Message);
strTem = br().readLine();
}catch(Exception e){
System.err.println("Muling tingan ang iyong numerong ibinigay");
}
return strTem;
}
}
我可能會誤解他,但我認爲他首先要問的是如何從用戶那裏獲得價值,而不是他在消息變量中獲得了價值。 – Thor84no
@ Thor84no:你可能是對的。這是非常不明確的: –
感謝您花時間回覆我需要的是用戶給出的文件路徑我的代碼只是硬編碼爲「F://dom.txt」用戶應該輸入希望命令提示符的路徑。thanksss :) – domdeleon