我正在尝试更改位于Android项目的assets文件夹中的.properties文件中的值。我没有在应用程序中抛出任何异常或错误,也没有对文件进行任何更改。我正在运行Android Studio作为我的IDE。
try {
Properties props = new Properties();
AssetManager assetManager = context.getAssets();
InputStream inputStream = assetManager.open("User.properties");
props.load(inputStream);
props.setProperty("id", value);
} catch (Exception e) {
e.printStackTrace();
}