私は疲れています。 そして、私はそれが実際には不可能であると信じ始めています。 "myPath/myFile.txt"というファイルの書き方を示す簡単な例はどこにありますか? それからもう一度それを読んで?ファイルを読み書きする方法の例(Android内蔵ストレージへのパスを含む)が必要です
これは私が仕事を得ることができないコードブロックの例:
:これは私が取得エラーです
if(pathExists(path, ctx))
{
File file = new File(ctx.getFilesDir().getAbsolutePath() +"/" + path, fileName);
FileInputStream fIn = new FileInputStream(file);
InputStreamReader isr = new InputStreamReader(fIn);
StringWriter writer = new StringWriter();
IOUtils.copy(fIn, writer, "UTF-8");
fileStr = writer.toString();
}
:
「にjava.io.IOExceptionはディレクトリです」
このヘルプリンクを使用しhttp://developer.android.com/guide/topics/data/data-storage.html#filesInternal – Relsell
このブログを読んで[リンク](HTTP://android-er.blogspot .in/2011/10/read-file-from-internal-storage-via.html) – Deepak