溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android開發(fā)實(shí)現(xiàn)讀取Assets下文件及文件寫入存儲卡的方法

發(fā)布時間:2020-09-12 14:00:04 來源:腳本之家 閱讀:649 作者:jia635 欄目:移動開發(fā)

本文實(shí)例講述了Android開發(fā)實(shí)現(xiàn)讀取Assets下文件及文件寫入存儲卡的方法。分享給大家供大家參考,具體如下:

調(diào)用一個反編譯的.so文件,查看起加密和解密情況,需要解析上萬的數(shù)組,而so文件加密解密都是通過Byte來進(jìn)行,又需要把String字符串轉(zhuǎn)化為 Byte,當(dāng)把數(shù)據(jù)直接寫在代碼中就會提示多Byte數(shù)組過大。最后把數(shù)組寫到Assets文件加下,讀取txt文本文件。

讀取Assets方法如下:

public String getFromAssets(String fileName) {
    String result = "";
    try {
      InputStream in = getResources().getAssets().open(fileName);
      // 獲取文件的字節(jié)數(shù)
      int lenght = in.available();
      // 創(chuàng)建byte數(shù)組
      byte[] buffer = new byte[lenght];
      // 將文件中的數(shù)據(jù)讀到byte數(shù)組中
      in.read(buffer);
      result = EncodingUtils.getString(buffer, ENCODING);
    } catch (Exception e) {
      e.printStackTrace();
    }
    return result;
}

然后

String strEn = getFromAssets("encode.txt");

txt中的文本文件是str,str,str這種形式,然后把

String[] encode1 = strEn.split(","); 

通過字符串把 讀取的字符串轉(zhuǎn)化成字符串?dāng)?shù)組。

for(int i=0;i<encode1.length;i++){
  sendString = encode1[i];
  //       sbuf.append(sendString+",");
  try {
    sendBytes = sendString.getBytes("UTF8");
    byte[] s = Base64Encoder.B64Encode(sendBytes);
    str = new String(s, "ISO-8859-1");
  } catch (UnsupportedEncodingException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
  }
  sbuf.append(str);
  sbuf.append(",");
}

String.split具有分割數(shù)組的作用,它已某一個特殊符號為分界點(diǎn)然后進(jìn)行數(shù)組分割。

再把加密后的字符串寫到本地文件。方法如下

public String saveInfo2File(String mString) {
    StringBuffer sb = new StringBuffer();
    try {
      long timestamp = System.currentTimeMillis();
      String fileName = "encut" + ".txt";
      if (Environment.getExternalStorageState().equals(
          Environment.MEDIA_MOUNTED)) {
        String spath = Environment.getExternalStorageDirectory()
            .getPath() + "/A1/";
        File sdir = new File(spath);
        if (!sdir.exists())
          sdir.mkdirs();
        FileOutputStream fos = new FileOutputStream(spath + fileName);
        sb.append(mString);
        fos.write(sb.toString().getBytes());
        fos.close();
      }
      return fileName;
    } catch (Exception e) {
    }
    return null;
}

更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android文件操作技巧匯總》、《Android視圖View技巧總結(jié)》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android布局layout技巧總結(jié)》、《Android開發(fā)入門與進(jìn)階教程》、《Android資源操作技巧匯總》及《Android控件用法總結(jié)》

希望本文所述對大家Android程序設(shè)計有所幫助。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI