您是否嘗試過使用屬性?
創建配置:
屬性prop = new Properties(); OutputStream輸出= null;
try {
SaveSucessful = true;
output = new FileOutputStream("config.jar");
// set the properties value
prop.setProperty("PVIDNO", "PALMUS-00001");
// save properties to project root folder
prop.store(output, null);
} catch (IOException io) {
io.printStackTrace();
} finally {
if (output != null) {
try {
output.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
讀取配置:
Properties prop = new Properties();
InputStream input = null;
try {
LoadSucessful = true;
input = new FileInputStream("config.jar");
// load a properties file
prop.load(input);
// get the property value and print it out
PlayerName = prop.getProperty("PVIDNO");
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
這應該很好地工作。
哪裏級'Ini'從何而來?這不是Java標準庫中的類。通常你會使用類「Properties」來加載這種格式的文件。 – Jesper
@Jesper忘了提及我使用ini4j。 –
看看這個[點擊我](http://stackoverflow.com/a/190633/1577167)希望這可以幫助。 – BottleMan