阅读Android设备中的Wpa_Supplicant.conf文件

时间:2014-02-05 09:35:54

标签: android

如何以编程方式从Android设备读取data/misc/wifi/wpa_supplicant.conf文件并将其显示在Textview中。

我们尝试使用以下代码来获取root权限:

Process psProc = Runtime.getRuntime().exec(new String[]{"su","-c"});
FileInputStream fin = openFileInput("/data/misc/wifi/wpa_supplicant.conf");
int c;
String temp="";
while( (c = fin.read()) != -1) {
    temp += Character.toString((char)c);
}
textview.setText(temp);
//string temp contains all the data of the file.
fin.close();

但是,我们没有得到任何输出。

谢谢, 拉马

1 个答案:

答案 0 :(得分:0)

如果没有root手机就无法访问它,您需要授予root级别权限,