首页 > 代码库 > 如何读取wpa_supplicant.conf文件
如何读取wpa_supplicant.conf文件
root后,如何复制wpa_supplicant.conf文件
如何做:
首先通过单独的system进程,拷贝该文件到data分区,任意一个包名下面:/data/data/com.XXXX.android/ 下面
再在主线程里面从该data分区目录下来,拷贝到sdcard下面。
为什么这样做:
同时设置了:android:sharedUserId="android.uid.system" android:process="system" 是不可以访问sdcard的。
具体怎么做:
主线程如下设置:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xxxxxxxx"
android:sharedUserId="android.uid.system"
android:versionCode="20150105"
android:versionName="1.0" >
单独system如何设置:
<service
android:name="xxxxxxxx.BackupWifiService"
android:exported="true"
android:process="system" >
<intent-filter>
<action android:name="xxxxxxxxxx" />
</intent-filter>
</service>
如何读取wpa_supplicant.conf文件