开发者

save input from text file to array

开发者 https://www.devze.com 2022-12-24 05:03 出处:网络
How to save text file content to different arrays? my text file content is like this; 12 14 16 18 13 17 14 18 10 23

How to save text file content to different arrays?

my text file content is like this;

12 14 16 18 13 17 14 18 10 23
pic1 pic2 pic3 pic4 pic5 pic6 pic7 pic8 pic9 pic10
left right top left right right top top left right
100 200 300 400 500 600 700 800 900 1000

how can I save each line into different array? e.g.

line 1 will be saved in an array1开发者_StackOverflow中文版
line 2 will be saved in an array2
line 3 will be saved in an array3
line 4 will be saved in an array4


Solution 1

List<String[]> arrays = new ArrayList<String[]>(); //You need an array list of arrays since you dont know how many lines does the text file has
try {
        BufferedReader in = new BufferedReader(new FileReader("infilename"));
        String str;
        while ((str = in.readLine()) != null) {
           String arr[] = str.split(" ");
           if(arr.length>0) arrays.add(arr);
        }
        in.close();
    } catch (IOException e) {
    }

At the end arrays will contain every array. In your example arrays.length()==4

To iterate over the arrays:

for( String[] myarr : arrays){
   //Do something with myarr
}

Solution 2: I don't think this is a good idea but if you are sure the file always is going to contain 4 lines you can do this

String arr1[];
String arr2[];
String arr3[];
String arr4[];
try {
        BufferedReader in = new BufferedReader(new FileReader("infilename"));
        String str;
        str = in.readLine();
        arr1[] = str.split(" ");
        str = in.readLine();
        arr2[] = str.split(" ");
        str = in.readLine();
        arr3[] = str.split(" ");
        str = in.readLine();
        arr4[] = str.split(" ");

        in.close();
    } catch (IOException e) {
    }


look at String[] split

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号