Android Studio读取显示txt
时间: 2023-06-14 10:05:41 浏览: 133
要在Android Studio中读取并显示.txt文件,您可以使用以下步骤:
1. 将txt文件放置在应用程序的assets文件夹中。如果不存在assets文件夹,则可以在项目根目录中创建一个新文件夹并将其命名为assets。
2. 使用以下代码在应用程序中打开txt文件并将其内容读取到字符串中:
```
try {
InputStream is = getAssets().open("filename.txt");
int size = is.available();
byte[] buffer = new byte[size];
is.read(buffer);
is.close();
String text = new String(buffer);
} catch (IOException e) {
e.printStackTrace();
}
```
请确保将“filename.txt”替换为您要读取的.txt文件的实际文件名。
3. 将字符串内容显示在应用程序中,例如在TextView中:
```
TextView textView = findViewById(R.id.text_view);
textView.setText(text);
```
请确保将“text”替换为您在步骤2中读取的实际字符串变量名,并将“text_view”替换为您要将文本显示的TextView的实际ID。
相关问题
Android Studio读取显示txt文件
你可以使用以下代码在Android Studio中读取和显示txt文件:
```java
private void readFile() {
FileInputStream fis = null;
try {
fis = openFileInput("example.txt");
InputStreamReader isr = new InputStreamReader(fis);
BufferedReader br = new BufferedReader(isr);
StringBuilder sb = new StringBuilder();
String text;
while ((text = br.readLine()) != null) {
sb.append(text).append("\n");
}
TextView textView = findViewById(R.id.textView);
textView.setText(sb.toString());
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
```
这个代码片段打开名为“example.txt”的文件并将其读取到应用程序中,然后将其显示在TextView上。 请注意,这个文件必须放在应用程序的内部存储区域(即/data/data/your.package.name/files/example.txt)中。
android studio读取本地txt
使用Android Studio读取本地txt文件可以通过以下步骤实现:
1. 在xml布局文件中添加一个TextView用于显示文本内容
2. 在Java代码中获取这个TextView的引用
3. 通过Java代码读取本地txt文件,并将读取的内容设置给TextView显示
具体的代码实现可以参考以下示例:
在xml布局文件中添加TextView:
```
<TextView
android:id="@+id/txt_content"
android:layout_width="match_parent"
android:layout_height="match_parent" />
```
在Java代码中获取TextView的引用:
```
TextView txtContent = findViewById(R.id.txt_content);
```
读取本地txt文件并设置内容:
```
try {
InputStream is = getAssets().open("test.txt"); // 读取assets目录下的test.txt文件
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line;
StringBuilder sb = new StringBuilder();
while ((line = br.readLine()) != null) {
sb.append(line);
}
String txt = sb.toString();
txtContent.setText(txt); // 将读取的内容设置给TextView显示
br.close();
isr.close();
is.close();
} catch (Exception e) {
e.printStackTrace();
}
```
注意需要在AndroidManifest.xml中添加以下权限:
```
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
```
阅读全文