[java] Android에서 텍스트 파일을 어떻게 읽을 수 있습니까?

텍스트 파일에서 텍스트를 읽고 싶습니다. 아래 코드에서 예외가 발생합니다 (즉, 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();
    }



답변

이 시도 :

텍스트 파일이 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());

다음 링크도 도움이 될 수 있습니다.

Android에서 SD 카드의 텍스트 파일을 어떻게 읽을 수 있습니까?

Android에서 텍스트 파일을 읽는 방법은 무엇입니까?

Android 읽기 텍스트 원시 리소스 파일


답변

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 에서이 파일을 읽으 려면 파일이 색인화되고 R 파일의 ID로 액세스 할 수 있습니다.

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

res / raw 폴더에서 텍스트 파일을 읽는 좋은 예


답변

자산 폴더에 텍스트 파일을 넣고 해당 폴더에서 파일을 읽습니다 …

아래 참조 링크를 참조하십시오 …

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

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

간단한 텍스트 파일 읽기

도움이 되길 바랍니다 …


답변

먼저 원시 폴더에 텍스트 파일을 저장합니다.

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


답변

이 코드 시도

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


답변

이 시도

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


답변