使用存储在ASSETS文件夹

时间:2016-06-22 07:11:42

标签: java android assets

我正在尝试了解assets文件夹中存储的数据文件与res / raw文件夹中存储的数据文件之间的区别。我的目标是将数据文件存储在app目录结构中(在这种情况下)存储测试分数,可以访问它们然后可以修改它们。据我所知,我需要使用ASSET而不是RAW文件。

当文本文件存储在RES / RAW文件夹中时,我设法将文本文件中的数据加载到数组中,但由于我正在使用ASSET文件,因此无法使其工作。我认为这就像使用AssetManager.open一样简单。

最终我的一个问题是这个。如何读取和写入ASSET文件夹中的文本文件?

这是我的代码:

public class MainActivity extends AppCompatActivity {

    String[][] testScoreList = new String[3][3];

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        //Load test scores into arraylist
        nameArrayListMethod();
    }

   //This method loads test scores into an array
    public void nameArrayListMethod (){
        InputStreamReader InputSR = null;
        BufferedReader BufferedRdr = null;
        String thisLine = null;

        AssetManager am = getAssets();

        InputSR = new InputStreamReader(am.open("test_scores.txt"));
        BufferedRdr = new BufferedReader(InputSR);


        try {
            // open input stream test_scores for reading purpose.
            int i = 0;
            while ((thisLine = BufferedRdr.readLine()) != null) {
                // System.out.println(thisLine);

                String[] parts = thisLine.split(" ");
                testScoreList[i][0] = parts[0];
                testScoreList[i][1] = parts[1];
                i = i +1;
            }
        } catch (Exception e) {
            e.printStackTrace();

        }

我在Unhandled exception: java.io.IOException行上收到(am.open("test_scores.txt"))个错误。

为输入干杯

4 个答案:

答案 0 :(得分:1)

InputStream is = getResources().openRawResource(R.raw.yourTxtFile);
String s = IOUtils.toString(is); // Here is the whole string you want
IOUtils.closeQuietly(is); // don't forget to close your streams

答案 1 :(得分:1)

AssetManger #open(String)将抛出异常,你需要处理它。

public final InputStream open(String fileName) throws IOException {
    return open(fileName, ACCESS_STREAMING);
}

所以你需要:

   try {
        InputSR = new InputStreamReader(am.open("test_scores.txt"));
        BufferedRdr = new BufferedReader(InputSR);
        // open input stream test_scores for reading purpose.
        int i = 0;
        while ((thisLine = BufferedRdr.readLine()) != null) {
            // System.out.println(thisLine);

            String[] parts = thisLine.split(" ");
            testScoreList[i][0] = parts[0];
            testScoreList[i][1] = parts[1];
            i = i +1;
        }
    } catch (Exception e) {
        e.printStackTrace();

    }

答案 2 :(得分:0)

尝试使用try / catch来防止您的应用崩溃。他们是有原因的。

这是我在Android中打开文件的方式:

try {
    InputStream inputstream = getResources().openRawResource(getResources().getIndentifier("file_name", "folder", getPackageName()));
    BufferedReader bufferedRdr = new BufferedReader(inputstream);
} catch (IOException ioe) {
    ioe.printStackTrace(); // error handling should be better then this...
} // and you should close the InputStream and BufferedReader with .close().

答案 3 :(得分:0)

    BufferedReader br = null;
    try {
        br = new BufferedReader(new InputStreamReader(getAssets().open("myfile.txt")));
        String line;
        while ((line = br.readLine()) != null) {
           System.out.println(line);
        }
    } catch (IOException e) {    
    }