如何以编程方式从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();
但是,我们没有得到任何输出。
谢谢, 拉马
答案 0 :(得分:0)
如果没有root手机就无法访问它,您需要授予root级别权限,