ฉันจะอ่านไฟล์ข้อความใน Android ได้อย่างไร


117

ฉันต้องการอ่านข้อความจากไฟล์ข้อความ ในโค้ดด้านล่างจะมีข้อยกเว้นเกิดขึ้น (ซึ่งหมายความว่าจะไปที่catchบล็อก) ฉันใส่ไฟล์ข้อความในโฟลเดอร์ของแอปพลิเคชัน ฉันควรวางไฟล์ข้อความนี้ไว้ที่ไหน (mani.txt) เพื่อให้อ่านได้อย่างถูกต้อง

    try
    {
        InputStream instream = openFileInput("E:\\test\\src\\com\\test\\mani.txt"); 
        if (instream != null)
        {
            InputStreamReader inputreader = new InputStreamReader(instream); 
            BufferedReader buffreader = new BufferedReader(inputreader); 
            String line,line1 = "";
            try
            {
                while ((line = buffreader.readLine()) != null)
                    line1+=line;
            }catch (Exception e) 
            {
                e.printStackTrace();
            }
         }
    }
    catch (Exception e) 
    {
        String error="";
        error=e.getMessage();
    }

4
คุณหวังว่าอีมูเลเตอร์ของคุณจะเป็นส่วนหนึ่งของ s / m ของคุณอย่างไร? "E: \\ test \\ src \\ com \\ test \\ mani.txt"
Athul Harikumar

2
คุณต้องการอ่านไฟล์ข้อความจากตำแหน่งใด ... ?
Sandip Armal Patil

2
InputStream iS = resources.getAssets (). เปิด (fileName); (ถ้าคุณใส่ไฟล์ในเนื้อหา)
Athul Harikumar

1
@Sandip จริงๆแล้วฉันคัดลอกไฟล์ข้อความ (mani.txt) แล้วใส่ลงในโฟลเดอร์ของแอปพลิเคชัน Android (โฟลเดอร์ที่มี. settings, bin, libs, src, assets, gen, res, androidmanifeast.xml)
user1635224

2
หรือใส่ในโฟลเดอร์ res / raw และตรวจสอบคำตอบที่อัปเดตของฉัน
Sandip Armal Patil

คำตอบ:


244

ลองสิ่งนี้:

ฉันถือว่าไฟล์ข้อความของคุณอยู่ในการ์ด sd

    //Find the directory for the SD Card using the API
//*Don't* hardcode "/sdcard"
File sdcard = Environment.getExternalStorageDirectory();

//Get the text file
File file = new File(sdcard,"file.txt");

//Read text from file
StringBuilder text = new StringBuilder();

try {
    BufferedReader br = new BufferedReader(new FileReader(file));
    String line;

    while ((line = br.readLine()) != null) {
        text.append(line);
        text.append('\n');
    }
    br.close();
}
catch (IOException e) {
    //You'll need to add proper error handling here
}

//Find the view by its id
TextView tv = (TextView)findViewById(R.id.text_view);

//Set the text
tv.setText(text.toString());

ลิงก์ต่อไปนี้สามารถช่วยคุณได้:

ฉันจะอ่านไฟล์ข้อความจากการ์ด SD ใน Android ได้อย่างไร

วิธีอ่านไฟล์ข้อความใน Android

Android อ่านไฟล์ทรัพยากรข้อความดิบ


3
ลิงค์ของคุณจะช่วยให้ฉันบรรลุ
user1635224

10
BufferedReader จำเป็นต้องปิดในตอนท้าย!
RainClick

2
หากคุณมีแถวว่างหนึ่งแถวในเอกสาร txt ตัววิเคราะห์นี้จะหยุดทำงาน! วิธีแก้ปัญหาคือยอมรับว่ามีแถวว่างนี้: while ((line = br.readLine()) != null) { if(line.length() > 0) { //do your stuff } }
Choletski

@Shruti วิธีการเพิ่มไฟล์ลงในการ์ด SD
Tharindu Dhanushka

@ Choletski ทำไมคุณบอกว่าจะหยุดทำงาน? หากมีบรรทัดว่างบรรทัดว่างจะต่อท้ายข้อความ StringBuilder มีปัญหาอะไร?
LarsH

29

หากคุณต้องการอ่านไฟล์จากการ์ด sd จากนั้นรหัสต่อไปนี้อาจเป็นประโยชน์สำหรับคุณ

 StringBuilder text = new StringBuilder();
    try {
    File sdcard = Environment.getExternalStorageDirectory();
    File file = new File(sdcard,"testFile.txt");

        BufferedReader br = new BufferedReader(new FileReader(file));  
        String line;   
        while ((line = br.readLine()) != null) {
                    text.append(line);
                    Log.i("Test", "text : "+text+" : end");
                    text.append('\n');
                    } }
    catch (IOException e) {
        e.printStackTrace();                    

    }
    finally{
            br.close();
    }       
    TextView tv = (TextView)findViewById(R.id.amount);  

    tv.setText(text.toString()); ////Set the text to text view.
  }

    }

หากคุณต้องการอ่านไฟล์จากโฟลเดอร์เนื้อหาแล้ว

AssetManager am = context.getAssets();
InputStream is = am.open("test.txt");

หรือถ้าคุณต้องการอ่านไฟล์นี้จากres/rawfoldery ซึ่งไฟล์จะถูกทำดัชนีและเข้าถึงได้โดย id ในไฟล์ R:

InputStream is = getResources().openRawResource(R.raw.test);     

ตัวอย่างที่ดีในการอ่านไฟล์ข้อความจากโฟลเดอร์ res / raw


2
brอยู่นอกขอบเขตในการบล็อกสุดท้าย
AlgoRythm

6

ใส่ไฟล์ข้อความของคุณในโฟลเดอร์สินทรัพย์ ... และอ่านไฟล์จากโฟลเดอร์นั้น ...

ดูลิงค์อ้างอิงด้านล่าง ...

http://www.technotalkative.com/android-read-file-from-assets/

http://sree.cc/google/reading-text-file-from-assets-folder-in-android

การอ่านไฟล์ข้อความธรรมดา

หวังว่ามันจะช่วย ...


3

ขั้นแรกให้คุณจัดเก็บไฟล์ข้อความของคุณในโฟลเดอร์ดิบ

private void loadWords() throws IOException {
    Log.d(TAG, "Loading words...");
    final Resources resources = mHelperContext.getResources();
    InputStream inputStream = resources.openRawResource(R.raw.definitions);
    BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));

    try {
        String line;
        while ((line = reader.readLine()) != null) {
            String[] strings = TextUtils.split(line, "-");
            if (strings.length < 2)
                continue;
            long id = addWord(strings[0].trim(), strings[1].trim());
            if (id < 0) {
                Log.e(TAG, "unable to add word: " + strings[0].trim());
            }
        }
    } finally {
        reader.close();
    }
    Log.d(TAG, "DONE loading words.");
}

3

ลองใช้รหัสนี้

public static String pathRoot = "/sdcard/system/temp/";
public static String readFromFile(Context contect, String nameFile) {
    String aBuffer = "";
    try {
        File myFile = new File(pathRoot + nameFile);
        FileInputStream fIn = new FileInputStream(myFile);
        BufferedReader myReader = new BufferedReader(new InputStreamReader(fIn));
        String aDataRow = "";
        while ((aDataRow = myReader.readLine()) != null) {
            aBuffer += aDataRow;
        }
        myReader.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return aBuffer;
}

1

ลองทำตามนี้

try {
        reader = new BufferedReader(new InputStreamReader(in,"UTF-8"));
    } catch (UnsupportedEncodingException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
      String line="";
      String s ="";
   try 
   {
       line = reader.readLine();
   } 
   catch (IOException e) 
   {
       e.printStackTrace();
   }
      while (line != null) 
      {
       s = s + line;
       s =s+"\n";
       try 
       {
           line = reader.readLine();
       } 
       catch (IOException e) 
       {
           e.printStackTrace();
       }
    }
    tv.setText(""+s);
  }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.