gpt4 book ai didi

android - 读取文本文件并将数据填充到数组中。

转载 作者:行者123 更新时间:2023-11-30 03:37:55 28 4
gpt4 key购买 nike

我很确定我只是在问一个愚蠢的问题但是,只是说有一个包含这些数据的 txt 文件

UniPub;112 Binara St;ACT
MooseHeads;科恩街 54 号;ACT
立方体;莫森街 24 号;ACT

我将使用以下代码在我的应用程序中读取它:

package au.edu.canberra.g30813706;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;

import android.app.Activity;
import android.os.Environment;


public class FileReader extends Activity{{

ArrayList<String> sInfo = new ArrayList<String>();

String txtName = "AccomodationTxt.txt";
File root = Environment.getExternalStorageDirectory();
File path = new File(root, "CanberraTourism/" + txtName);

try {

BufferedReader br = new BufferedReader (
new InputStreamReader(
new FileInputStream(path)));
String line;
String[] saLineElements;
while ((line = br.readLine()) != null)
{
//The information is split into segments and stored into the array
saLineElements = line.split(";");
for (int i = 0; i < saLineElements.length; i++)
sInfo.add(saLineElements[i]);
//sInfo.addAll(Arrays.asList(saLineElements[0], saLineElements[1], saLineElements[3]));
}
br.close();


}
catch (FileNotFoundException e) {

System.err.println("FileNotFoundException: " + e.getMessage());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}}
}

我如何区分数组中的行?

例如

我想在一页上显示名字的文本,所以只有

UniPub
驼鹿头
立方体

最佳答案

如何将字符串数组而不是单个元素添加到 ArrayList。
像这样:

ArrayList<String[]> sInfo = new ArrayList<String[]>();
String line;
String[] saLineElements;
while ((line = br.readLine()) != null)
{
//The information is split into segments and stored into the array
saLineElements = line.split(";");
sInfo.add(saLineElements);
}

然后您可以遍历 sInfo 并使用 sInfo 中每个数组中的第一个元素。

关于android - 读取文本文件并将数据填充到数组中。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16338062/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com