有人能告訴我我的代碼有什麼問題嗎?我得到一個錯誤,當我試圖將文件加載到一個fileInputStream
javafx加載推箱子文件
錯誤消息:
java.io.FileNotFoundException: file:\C:\Users\zzxx\Desktop\netBean\hw3\Sokoban_draft\data\1.sok (The filename, directory name, or volume label syntax is incorrect)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
代碼:
String filePath = new String("file:///C:/Users/zzxx/Desktop/netBeanhw3/Sokoban_draft/data/1.sok");
GridRenderer gamePane = new GridRenderer();
File sokFile = new File(filePath);
byte[] bytes = new byte[Long.valueOf(sokFile.length()).intValue()];
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
FileInputStream fis = new FileInputStream(sokFile);
BufferedInputStream bis = new BufferedInputStream(fis);
你有一個包含名爲「C:」的文件夾的「file:」驅動器嗎? – immibis 2014-10-08 08:22:51