UDP client

This commit is contained in:
liujiahua123123 2019-08-17 14:30:58 +08:00
parent bbc1f717a6
commit e30c8ea3c4

View File

@ -33,6 +33,9 @@ public class MiraiConfig {
}
this.file = file;
try {
if(file.exists()){
file.createNewFile();
}
Config config = new Config();
config.setMultiSection(true);
ini = new Ini();
@ -78,6 +81,7 @@ public class MiraiConfig {
}
a.saveAsSection(ini.get(k));
});
this.clearCache();
try {
ini.store(file);
} catch (IOException e) {