我有一个问题,因为我想将按钮位置(MainMenu.Menu_Options)保存到属性文件中并读取它。我怎样才能做到这一点?我知道我可以使用 getLocation() 但我需要将其转换为字符串。代码:
try{
options.setProperty("firstbackcolor", firstbackgroundColor.toString());
options.setProperty("secondbackcolor", secondbackgroundColor.toString());
options.setProperty("firsttext", firsttextColor.toString());
options.setProperty("secondtext", secondtextColor.toString());
options.setProperty("Slot_Options", MainMenu.Menu_Options.getLocation());
options.store(new FileOutputStream(SupremeDataPath),null);
}catch(Exception e){}
任何人?