如何从 MainActivity 添加到 network_security_config

我有一个应用程序,我从每个 OkHTTP 的网络服务器获取一些值,它可以工作并将其显示在 MainActivity 上。现在我想将这些收到的值添加到network_security_config.xml.


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


现在我希望这个字符串出现在我的network_security_config.xmlat中VALUE_I_WANT_TO_ADD。我该怎么做呢?我可以为此使用 jdom 吗?


network_security_config.xml:


<?xml version="1.0" encoding="utf-8"?>

<network-security-config>

  <domain-config cleartextTrafficPermitted="true">

    <domain includeSubdomains="true">google.com</domain>

      <pin-set expiration="2020-01-01">

  <pin digest="SHA-256">MbZtXtN6X71CNe/UJzKFH0UGnPWGux5/zo5BRaJpkvI=</pin>


<pin digest="SHA-256">VALUE_I_WANT_TO_ADD</pin>

      </pin-set>

  </domain-config>

</network-security-config>


长风秋雁
浏览 93回答 1
1回答

缥缈止盈

从你的问题看来,你想保存你的字符串以备后用,所以你可以使用SharedPreferences来保存String以备后用。final String TAG = "some final text";sharedPref = new SharedPreferences();sharedPref = getSharedPreferences(TAG,Context.MODE_PRIVATE);&nbsp; &nbsp; SharedPreferences.Editor editor = sharedPref.edit();&nbsp; &nbsp; editor.putString("key","your_string");&nbsp; &nbsp; editor.apply();稍后,您可以SharedPreferences在再次运行您的应用程序时检索您的字符串,如下所示&nbsp; &nbsp; String value = sharedPref.getString("key","default_value");
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java