中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

Android 文件保存到應(yīng)用和sd卡中

2018-07-20    來源:open-open

容器云強(qiáng)勢上線!快速搭建集群,上萬Linux鏡像隨意使用
1.權(quán)限添加  
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>  
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>  
  
  

public static String getDataFolderPath(Context paramContext) {  
        return Environment.getDataDirectory() + "/data/"  
                + paramContext.getPackageName() + "/files";  
    }  
  
    public static String getMyFileDir(Context context){  
        return context.getFilesDir().toString();  
    }  
      
    public static String getMyCacheDir(Context context){  
        return context.getCacheDir().toString();  
    }  
    /** 
     * @desc 保存內(nèi)容到文件中 
     * @param fileName 
     * @param content 
     * @throws Exception 
     */  
    public static void save(Context context, String fileName, String content, int module) {  
        try {  
            FileOutputStream os = context.openFileOutput(fileName, module);  
            os.write(content.getBytes());  
            os.close();  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
    }  
      
    /** 
     * @desc 讀取文件內(nèi)容 
     * @param fileName 
     * @return 
     */  
    public static String read(Context context, String fileName){  
          
        try {  
            FileInputStream fis = context.openFileInput(fileName);  
            ByteArrayOutputStream bos = new ByteArrayOutputStream();  
            byte[] b = new byte[1024];  
            int len = 0;  
            while((len = fis.read(b)) != -1){  
                bos.write(b, 0, len);  
            }  
            byte[] data = bos.toByteArray();  
            fis.close();  
            bos.close();  
            return new String(data);  
        } catch (Exception e) {  
            e.printStackTrace();  
        }  
        return  null;  
    }  
      
      
    /** 
     * @desc 將文本內(nèi)容保存到sd卡的文件中 
     * @param context 
     * @param fileName 
     * @param content 
     * @throws IOException 
     */  
    public static void saveToSDCard(Context context, String fileName, String content) throws IOException{  
          
        File file = new File(Environment.getExternalStorageDirectory(),fileName);  
        FileOutputStream fos = new FileOutputStream(file);  
        fos.write(content.getBytes());  
        fos.close();  
    }  
  
    /** 
     * @desc 讀取sd卡文件內(nèi)容 
     * @param fileName 
     * @return 
     * @throws IOException 
     */  
    public static String readSDCard(String fileName) throws IOException {  
          
        File file = new File(Environment.getExternalStorageDirectory(),fileName);  
        FileInputStream fis = new FileInputStream(file);  
        ByteArrayOutputStream bos = new ByteArrayOutputStream();  
        byte[] buffer =  new byte[1024];  
        int len = 0;  
        while((len = fis.read(buffer)) != -1)  
        {  
            bos.write(buffer, 0, len);  
        }  
        byte[]  data = bos.toByteArray();  
        fis.close();  
        bos.close();  
          
        return new String(data);  
    }

標(biāo)簽: 權(quán)限

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點(diǎn)!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇:PHP調(diào)用http接口

下一篇:PHP根據(jù)一個給定經(jīng)緯度的點(diǎn),進(jìn)行附近地點(diǎn)查詢