如何从MainActivity添加到network_security_config

时间:2019-07-17 12:00:06

标签: java android xml

我有一个应用程序,可以通过OkHTTP从网络服务器上获取一些值,该应用程序可以正常工作,并将其显示在MainActivity上。现在,我要将这些接收到的值添加到network_security_config.xml中。

为简单起见,我在MainActivity中将String设置为等于YZPgTZ+woNCCCIW3LH2CxQeLzB/1m42QcCTBSdgayjs=

现在,我希望此字符串显示在network_security_config.xml的{​​{1}}中。我该怎么做呢?我可以为此使用jdom吗?

VALUE_I_WANT_TO_ADD

network_security_config.xml

1 个答案:

答案 0 :(得分:0)

从您的问题看来,您想要保存字符串以备后用,因此可以使用SharedPreferences保存String供以后使用。

final String TAG = "some final text";
sharedPref = new SharedPreferences();
sharedPref = getSharedPreferences(TAG,Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = sharedPref.edit();

    editor.putString("key","your_string");
    editor.apply();

稍后,当您按如下所示再次运行应用程序时,可以从SharedPreferences检索字符串

    String value = sharedPref.getString("key","default_value");