且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在Java中保存首选项用户设置?

更新时间:2023-11-26 14:01:46

您可以使用 java.util.prefs 包。一个简单的例子:

You can use java.util.prefs package. A simple example:

// Retrieve the user preference node for the package com.mycompany
Preferences prefs = Preferences.userNodeForPackage(com.mycompany.MyClass.class);

// Preference key name
final String PREF_NAME = "name_of_preference";

// Set the value of the preference
String newValue = "a string";
prefs.put(PREF_NAME, newValue);

// Get the value of the preference;
// default value is returned if the preference does not exist
String defaultValue = "default string";
String propertyValue = prefs.get(PREF_NAME, defaultValue); // "a string"

还有更多 java2s.com上的示例