1
我正在嘗試使用ini4j。但我無法讀取文件。代碼:ini4j讀取文件錯誤
ini = new Wini(new InputStreamReader(new FileInputStream("./setup.ini"), "UTF-8"));
但它給我的錯誤:
Unhandled exception type IOException
Unhandled exception type InvalidFileFormatException
Unhandled exception type UnsupportedEncodingException
Unhandled exception type FileNotFoundException
我已經嘗試過 「C:\ setup.ini的」 和 「的setup.ini」 和「C:/setup.ini 「 我也試過:
ini = new Wini(new InputStreamReader(new FileInputStream(New File("./setup.ini")), "UTF-8"));
的變量INI正確聲明:
Wini ini;
任何想法?
謝謝!缺少的try catch塊是主要問題! –