android保存bitmap

 // 保存到sdcard
    public  void savePic(Bitmap b) {

        FileOutputStream fos = null;
        try {
        Log.i(TAG,"start savePic");
       
//         String sdpath ="/storage/sdcard1/";
        File f = new File(sdpath ,"11.bmp");
        if (f.exists()) {
        f.delete();
        }
       
            fos = new FileOutputStream(f);
            Log.i(TAG,"strFileName 1= " + f.getPath());
            if (null != fos) {
                b.compress(Bitmap.CompressFormat.PNG, 90, fos);
                fos.flush();
                fos.close();
                Log.i(TAG,"save pic OK!");
            }
        } catch (FileNotFoundException e) {
        Log.i(TAG,"FileNotFoundException");
            e.printStackTrace();
        } catch (IOException e) {
        Log.i(TAG,"IOException");
            e.printStackTrace();
        }
    }
    

在这里还需要两个权限:

   
   

你可能感兴趣的:(android保存bitmap)