如何阅读wpa_supplicant.conf文件

时间:2014-02-06 06:35:56

标签: android

任何人都可以帮我通过android app以编程方式阅读Android设备中的/data/misc/wifi/wpa_supplicant.conf文件。

我尝试使用以下代码来读取存储在wpa_supplicant.conf文件中的信息,并在textview中显示信息。但它什么都不返回。

try 
{

    Process psProc = Runtime.getRuntime().exec(new String[]{"su","-c"});//root
    File path=Environment.getDataDirectory();
    File myFile = new File("/data/misc/wifi/wpa_supplicant.conf");
    FileInputStream fIn = new FileInputStream(myFile);
    BufferedReader myReader = new BufferedReader(
    new InputStreamReader(fIn));
    String aDataRow = "";
    String aBuffer = "";
    while ((aDataRow = myReader.readLine()) != null) {
        aBuffer += aDataRow + "\n";
    }
    tv.setText(aBuffer);
    myReader.close();
    Toast.makeText(getBaseContext(),"Done reading SD 'TextAreaAppender.java'",
                Toast.LENGTH_SHORT).show();
}
catch (Exception e) 
{
    Toast.makeText(getBaseContext(), e.getMessage(),Toast.LENGTH_LONG).show();
    tv.setText(e.getMessage());
}

Textview不显示任何内容。

1 个答案:

答案 0 :(得分:1)

请确保您已重新安装分区。否则,您无权在此处读/写。

您可以在对该文件夹进一步操作之前尝试关注。

Runtime.getRuntime().exec("system/bin/mount -o rw,remount -t rootfs /data");
Runtime.getRuntime().exec("system/bin/chmod 777 /data/misc/wifi");