91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android應用中如何實現讀取項目中的txt文件

發布時間:2020-11-23 17:44:01 來源:億速云 閱讀:934 作者:Leah 欄目:移動開發

這篇文章給大家介紹Android應用中如何實現讀取項目中的txt文件,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

具體如下:

1. 眾所周知,Android的res文件夾是用來存儲資源的,可以在res文件夾下建立一個raw文件夾,放置在raw文件夾下的內容會被原樣打包,而不會被編譯成二進制文件,并且可以通過R文件進行很方便地訪問。
比如我們可以將更新信息、版權信息等放到txt文件中,然后放到raw文件中,然后很方便地進行訪問。

在raw中放入一個a.txt文件,然后就可以在Activity中使用getResources().openRawResource(R.raw.a);方法獲取一個此文件的InputStream類,而后就可以很方便地進行讀寫a.txt了。

InputStream inputStream = getResources().openRawResource(R.raw.a);

一個獲取InputStream中字符串內容的方法:

public static String getString(InputStream inputStream) {
  InputStreamReader inputStreamReader = null;
  try {
    inputStreamReader = new InputStreamReader(inputStream, "gbk");
  } catch (UnsupportedEncodingException e1) {
    e1.printStackTrace();
  }
  BufferedReader reader = new BufferedReader(inputStreamReader);
  StringBuffer sb = new StringBuffer("");
  String line;
  try {
    while ((line = reader.readLine()) != null) {
      sb.append(line);
      sb.append("\n");
    }
  } catch (IOException e) {
    e.printStackTrace();
  }
  return sb.toString();
}

傳入一個InputStream,返回其中的文本內容。

其中:

inputStreamReader = new InputStreamReader(inputStream, "gbk");

為以gbk編碼讀取內容,不同的文本文件可能編碼不同,如果出現亂碼,可能需要調整編碼

2. 下面通過一個例子講解讀取資源文件顯示在ScrollView當中:

①.ReadAsset.java文件:

package com.example.ReadAsset;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import java.io.IOException;
import java.io.InputStream;
public class ReadAsset extends Activity {
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.read_asset);
    try {
//Return an AssetManager instance for your application's package
      InputStream is = getAssets().open("index.txt");
      int size = is.available();
      // Read the entire asset into a local byte buffer.
      byte[] buffer = new byte[size];
      is.read(buffer);
      is.close();
      // Convert the buffer into a string.
      String text = new String(buffer, "GB2312");
      // Finally stick the string into the text view.
      TextView tv = (TextView) findViewById(R.id.text);
      tv.setText(text);
    } catch (IOException e) {
      // Should never happen!
      throw new RuntimeException(e);
    }
  }
}

②. read_asset.xml文件

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<ScrollView android:layout_width="fill_parent"
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_height="fill_parent" android:paddingTop="50dip">
  <TextView android:id="@+id/text" android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:textStyle="normal" />
</ScrollView>

③.然后在工程里面新建一個assets文件夾,隨便放一個index.txt的文件在其中,運行 Ctrl+F11進行測試即可;

關于Android應用中如何實現讀取項目中的txt文件就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

北安市| 阿图什市| 隆昌县| 依安县| 顺义区| 绥江县| 建瓯市| 吴忠市| 宣城市| 洪洞县| 汝州市| 石泉县| 化德县| 星子县| 勐海县| 宽城| 长阳| 淮北市| 法库县| 偃师市| 泰州市| 招远市| 梅河口市| 漳平市| 普兰店市| 鄱阳县| 兴和县| 宁晋县| 新龙县| 邓州市| 敖汉旗| 玉林市| 锡林郭勒盟| 双流县| 五常市| 唐河县| 岳普湖县| 游戏| 凤台县| 靖远县| 枣阳市|