Android 属性直接 xml 文件更改/编辑
我有一个属性活动,用户必须提供一些数据才能连接到服务器并更新一些数据。
public class Preferencias extends PreferenceActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preferences);
setContentView(R.layout.preferences);
}
是否可以手动编辑属性文件(所以不通过活动或
SharedPreferences preferences = PreferenceManage.getDefaultSharedPreferences(context)) ?
类似的东西......
FileOutputStream fos = openFileOutput(/data/data/com.your.package, Context.MODE_PRIVATE);
以便用户可以打开 xml 文件并可以编辑它? (这在其他平台上是可能的,这就是我问的原因)
非常感谢
I have a Properties Activity where the user has to provide some data to conect to the server and update some data.
public class Preferencias extends PreferenceActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preferences);
setContentView(R.layout.preferences);
}
Would it be possible to edit the properties file manually (so NOT through the activity or
SharedPreferences preferences = PreferenceManage.getDefaultSharedPreferences(context)) ?
Something like ....
FileOutputStream fos = openFileOutput(/data/data/com.your.package, Context.MODE_PRIVATE);
so that the user can open the xml file and can edit it?
(This is posible in other platforms that's why I am asking)
thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能使用内部存储,因为用户(或任何其他应用程序)无法访问内部存储中的文件。
但是,您可以在 external 中创建 xml 文件存储,以便用户可以访问它。修改完成后就可以加载它了。
You cannot use internal storage as files there won't be accessible to user(or by any other application).
However you can create the xml file in external storage so that user can access it. Then once the modifications are done you can load it.