j2me讀寫本地文件的功能依賴jsr75庫,試圖讀取file:///d/abc.txt時報以下錯誤:
java.io.IOException
at javax.microedition.io.file.FileConnectionImpl.openDataInputStream(Unknown Source)
at Welcome.keyPressed(Welcome.java:84)
at javax.microedition.lcdui.Canvas.invokeKeyPressed(Unknown Source)
at emulator.j.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
文件放在d:\abc.txt,通過Procmon工具監控發現kemulotar到它自己所在目錄下的file目錄中的d目錄去讀取,解決方法就是把abc.txt移到該目錄。