How to read a selected text file from sdcard on android
我是 android 开发的新手,我需要你的帮助。我锁定了与我的发展相似但对我没有帮助的主题。
到目前为止,我创建的函数可以从我的 sdcard 中获取文件并向我显示当时的列表。
这是工作
这是在 sdcard 上获取路径的代码:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
package com.seminarskirad;
import android.app.AlertDialog; import java.io.BufferedReader; public class LoadActivity extends ListActivity{ private enum DISPLAYMODE{ ABSOLUTE, RELATIVE; } @Override } private void upOneLevel(){ private void Browse(final File aDirectory){ } private void fill(File[] files) { switch(this.displayMode){ ArrayAdapter<String> directoryList = new ArrayAdapter<String>(this, R.layout.load, this.directoryEntries); protected void onListItemClick(ListView l, View v, int position, long id) { private void readFile() { |
对不起,我不能放图像,因为我没有声誉,但是当我在我的模拟器上运行它时,会得到这样的结果:
1
2 3 4 |
/mnt/sdcard/kuzmanic.c
/mnt/sdcard/text.txt /mnt/sdcard/DCIM /mnt/sdcard/LOST.DIR |
所以我想要做的是当我点击我想要打开的 text.txt 或 kuzmanic.c 文件时,然后在同一个布局文件中,即我的 load.xml 文件:
1
2 3 4 5 6 7 8 9 |
This is the code for the xml file: <?xml version="1.0" encoding="utf-8"?> <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:textSize="18sp"> </TextView> |
我需要在我的代码中写什么,我必须在清单中写什么???
试试这个代码:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
package com.javasamples;
import java.io.*; import android.app.Activity; import android.os.Bundle; import android.view.*; import android.view.View.OnClickListener; import android.widget.*; public class FileDemo2 extends Activity { @Override btnWriteSDFile = (Button) findViewById(R.id.btnWriteSDFile); public void onClick(View v) { btnReadSDFile = (Button) findViewById(R.id.btnReadSDFile); public void onClick(View v) { btnClearScreen = (Button) findViewById(R.id.btnClearScreen); public void onClick(View v) { btnClose = (Button) findViewById(R.id.btnClose); public void onClick(View v) { }// onCreate }// AndSDcard |
布局文件是
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/widget28" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#ff0000ff" android:orientation="vertical" xmlns:android="http://schemas.android.com/apk/res/android" > <EditText android:id="@+id/txtData" android:layout_width="fill_parent" android:layout_height="180px" android:textSize="18sp" /> <Button <Button <Button <Button </LinearLayout> |
首先,您必须在 load.xml 文件中为您的 textview 提供一个 id,并在线性布局中定义 textview。像这样
1
2 3 4 5 6 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent" <TextView android:id="@+id/tv1 android:layout_width="fill_parent" android:layout_height="fill_parent" android:textSize="18sp"/> |
现在您必须设置活动的布局。您只能在 onCreate() 方法中执行此操作。
1
|
setContentView(R.layout.load);
|
现在制作一个像这样的 TextVew 对象。
1
|
TextView tview = (TextView) findViewById(R.id.tv1);
|
现在您必须使用 FileInputStream 读取文本文件并将其保存到字符串变量中。
之后,您可以将字符串分配给文本视图。
1
|
tview.setText(string variable name);
|
我使用此代码读取 SD 卡中的文本文件,
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
public class ReadFileSDCardActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //Find the view by its id File dir = Environment.getExternalStorageDirectory(); //Get the text file if(file.exists()) // check if file exist try { while ((line = br.readLine()) != null) { |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268976.html