国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術(shù)文章
文章詳情頁

android開發(fā)實現(xiàn)文件讀寫

瀏覽:4日期:2022-09-23 10:10:23

本文實例為大家分享了android實現(xiàn)文件讀寫的具體代碼,供大家參考,具體內(nèi)容如下

讀取

/*** 文件讀取* @param is 文件的輸入流* @return 返回文件數(shù)組*/private byte[] read(InputStream is) { //緩沖區(qū)inputStream BufferedInputStream bis = null; //用于存儲數(shù)據(jù) ByteArrayOutputStream baos = null; try { //每次讀1024 byte[] b = new byte[1024]; //初始化 bis = new BufferedInputStream(is); baos = new ByteArrayOutputStream();int length; while ((length = bis.read(b)) != -1) { //bis.read()會將讀到的數(shù)據(jù)添加到b數(shù)組 //將數(shù)組寫入到baos中 baos.write(b, 0, length); } return baos.toByteArray(); } catch (IOException e) { e.printStackTrace(); } finally {//關(guān)閉流 try { if (bis != null) {bis.close(); } if (is != null) {is.close(); } if (baos != null) baos.close(); } catch (IOException e) { e.printStackTrace(); } } return null;}

寫入

/** * 將數(shù)據(jù)寫入文件中 * @param buffer 寫入數(shù)據(jù) * @param fos 文件輸出流 */private void write(byte[] buffer, FileOutputStream fos) { //緩沖區(qū)OutputStream BufferedOutputStream bos = null; try { //初始化 bos = new BufferedOutputStream(fos); //寫入 bos.write(buffer); //刷新緩沖區(qū) bos.flush(); } catch (IOException e) { e.printStackTrace(); } finally {//關(guān)閉流 try { if (bos != null) {bos.close(); } if (fos != null) {fos.close(); } } catch (IOException e) { e.printStackTrace(); } }}

使用

//獲取文件輸入流InputStream mRaw = getResources().openRawResource(R.raw.core);//讀取文件byte[] bytes = read(mRaw);//創(chuàng)建文件(getFilesDir()路徑在data/data/<包名>/files,需要root才能看到路徑)File file = new File(getFilesDir(), 'hui.mp3');boolean newFile = file.createNewFile();//寫入if (bytes != null) { FileOutputStream fos = openFileOutput('hui.mp3', Context.MODE_PRIVATE); write(bytes, fos);}

該步驟為耗時操作,最好在io線程執(zhí)行

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Android
相關(guān)文章:
主站蜘蛛池模板: 国产成人一区免费观看 | 国产欧美在线不卡 | 天堂色网站 | 在线观看亚洲免费视频 | 91资源在线播放 | 成年人免费视频网站 | 国产成人精品福利网站在线 | 成人午夜兔费观看网站 | 亚洲经典在线中文字幕 | 国产精品美女久久久久网站 | 日本一本久 | 中文字幕波多野不卡一区 | 9191精品国产费久久 | ppypp日本欧美一区二区 | 日韩欧美毛片免费观看视频 | 亚洲国产夜色在线观看 | 国产精品久久久久久 | 亚洲狠狠综合久久 | 日本在线免费视频 | 99草精品视频 | 欧美人体在线 | 男女生性毛片免费观看 | 久草在线视频免费资源观看 | 久久er热视频在这里精品 | 九九色综合网 | 99久久精品国产片 | 欧美色综合高清视频在线 | 毛片在线不卡 | 国产一区亚洲二区 | 亚洲日本综合 | 国产亚洲精品久久久久久午夜 | 国产在线高清视频 | 久久精品视频6 | 欧美精品专区免费观看 | 国产一区二区久久久 | 欧美三级黄色 | 久久精品国产在爱久久 | 亚洲天堂资源网 | 免费一区二区三区四区五区 | 亚洲一区二区在线免费观看 | 亚洲欧美一区二区三区在线 |