Como posso ler um arquivo de texto no Android?


116

Quero ler o texto de um arquivo de texto. No código abaixo, ocorre uma exceção (isso significa que vai para o catchbloco). Coloquei o arquivo de texto na pasta do aplicativo. Onde devo colocar este arquivo de texto (mani.txt) para lê-lo corretamente?

    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
o que você espera que seu emulador faça parte do seu s / m? "E: \\ test \\ src \\ com \\ test \\ mani.txt"
Athul Harikumar

2
de qual local você deseja ler o arquivo de texto ...?
Sandip Armal Patil

2
InputStream iS = resources.getAssets (). Open (fileName); (se você colocar o arquivo em recursos)
Athul Harikumar

1
@Sandip, na verdade, copiei o arquivo de texto (mani.txt) e coloquei-o na pasta do aplicativo Android (pasta com .settings, bin, libs, src, assets, gen, res, androidmanifeast.xml)
user1635224

2
ou coloque simplesmente na pasta res / raw e verifique minha resposta atualizada.
Sandip Armal Patil

Respostas:


242

Experimente isto:

Presumo que seu arquivo de texto esteja no cartão 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());

os links a seguir também podem ajudá-lo:

Como posso ler um arquivo de texto do cartão SD no Android?

Como ler arquivo de texto no Android?

Android lê arquivo de recurso bruto de texto


3
seu link seria me ajuda a alcançar
user1635224

10
O BufferedReader precisa ser fechado no final!
RainClick de

2
Se você tiver uma linha vazia em seu documento txt, este analisador irá parar de funcionar! A solução é admitir ter essas linhas vazias: while ((line = br.readLine()) != null) { if(line.length() > 0) { //do your stuff } }
Choletski

@Shruti como adicionar o arquivo ao cartão SD
Tharindu Dhanushka

@Choletski, por que você diz que vai parar de funcionar? Se houver uma linha em branco, a linha em branco será anexada ao texto StringBuilder. Qual é o problema?
LarsH de

28

Se você deseja ler o arquivo do cartão SD. Então, o código a seguir pode ser útil para você.

 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.
  }

    }

Se você deseja ler o arquivo da pasta de ativos, então

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

Ou se você quiser ler este arquivo na res/rawpasta, onde o arquivo será indexado e pode ser acessado por um id no arquivo R:

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

Bom exemplo de leitura de arquivo de texto da pasta res / raw


2
brestá fora do escopo no bloco finally.
AlgoRythm


3

Primeiro você armazena seu arquivo de texto na pasta raw.

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.");
}

2

Tente este código

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;
}

0

Tente isto

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);
  }
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.