从Android设备中检索已保存的WiFi密码

时间:2015-09-12 05:07:28

标签: android wifi android-wifi wifimanager

我正在开发一个Android应用程序,我需要在手机或平板电脑中显示已保存的WiFi密码。例如,如果我的手机连接到任何网络,即我的手机中保存了无密码。我想得到它。

4 个答案:

答案 0 :(得分:1)

除非你扎根,否则我不知道有任何办法。如果你是扎根的,或者愿意为你的Galaxy取得好处,那么你应该可以使用文件管理器(ASTRO,Root Browser等)来查找它。

使用文件管理器找到你的data / misc / file文件夹,然后查找wpa_supplicant.conf,或者我认为如果他/她的网络使用WEP而不是WPA,它可能是wep_supplicant.conf。使用文本编辑器(可能内置在文件管理器应用程序中)打开.conf文件,如果没有,请将其添加到购物清单中。此时您应该能够以纯文本格式读取密码。

答案 1 :(得分:1)

您的评论在某种程度上帮助我找到了我的问题的解决方案。特别是@Namik Kalavadia我在谈论你,谢谢你。 最后这是解决方案。

public class MainActivity extends Activity {

    File file;
    public StringBuffer ab;
    public File savefile;
    public InputStream in = null;
    public String filename = "wpa_supplicant.conf";
    public File ot_path;
    Context context;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        context = getApplicationContext();
        ot_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
        Log.d("aaa", ""+ot_path.toString());
    }

    public void path(View v){
        getPath();
    }
    private void getPath(){
        file = Environment.getRootDirectory();
        String ext = ".conf";
        File list[] = file.listFiles();
        ab = new StringBuffer();
        if(list!=null){
            fileNameSearch(list);

    }
    }

    public void fileNameSearch(File list[]){
        if(list!=null){
        for(int f = 0;f<list.length;f++){
            ab.append(list[f].getName()+"\n");

            File fi = list[f];
            String path = fi.getPath();
            if(fi.isDirectory()){
                fileNameSearch(fi.listFiles());
            }
            else if(path.endsWith(".conf")){
                if(path.contains(filename)){
                    try{
                    File fileForParse = copyFile(path,ot_path);
                    in = new FileInputStream(fileForParse);
                    getStringFromInputStream(in);

                Log.d("aaa", "conf I got it"+path);
                    }catch(Exception e){
                        e.printStackTrace();
                    }
                }
            }
        }
        }
        else{
            Log.d("aaa", "List is null in method");
        }
    }
    private File copyFile(String inputPath, File outputPath) {

        InputStream input = null;
        OutputStream out = null;
        try {

            if (!outputPath.exists())
            {
                outputPath.mkdirs();
            }
            savefile = new File(outputPath,filename);
            if (!savefile.exists()) {
                savefile.createNewFile();
                File f = new File(inputPath);
                Log.d("aaa",""+f.length());
                input = new FileInputStream(inputPath);        
                out = new FileOutputStream(savefile);
                byte[] buffer = new byte[1024];
                int read;
                while ((read = input.read(buffer)) != -1) {
                    out.write(buffer, 0, read);
                }
                Log.d("aaa",""+savefile.length());
                input.close();
                input = null;
                    out.flush();
                out.close();
                out = null;        

            }


        }  catch (FileNotFoundException fnfe1) {
            Log.e("aaa", fnfe1.getMessage());
            return null;
        }
                catch (Exception e) {
            Log.e("aaa", e.getMessage());
            return null;
        }
return savefile;
    }

    @SuppressWarnings("deprecation")
    private String getStringFromInputStream(InputStream is) {

        BufferedReader br = null;
        StringBuilder sb = new StringBuilder();

        String line;
        try {

            br = new BufferedReader(new InputStreamReader(is));
            while ((line = br.readLine()) != null) {

                if(line.contains("ssid")||line.contains("psk")){
                    sb.append(line+"\n");
                }
                if(line.contains("}")){
                    sb.append("-----------------\n");
                }

            AlertDialog ad = new AlertDialog.Builder(MainActivity.this).create();
            ad.setTitle("Lis of WiFi Passwords Saved in your Mobile");
            ad.setMessage(sb);
            ad.setButton("OK",new DialogInterface.OnClickListener() {

                @Override
                public void onClick(DialogInterface dialog, int which) {
                    // TODO Auto-generated method stub
                    finish();
                }
            });
            ad.show();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (br != null) {
                try {
                    br.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        return sb.toString();

    }

}

答案 2 :(得分:0)

据我所知,这是不可能的。如果sdk工具允许这样做,那将是一个安全问题。

答案 3 :(得分:0)

由于安全问题,无法以编程方式检索已保存的Wifi密码。如果您使用手机,则可以获取它,但也可以加密形式。