如何从文本文件中读取并存储到java中的数组中

如何从包含大量数字的文本文件中读取数据并将其存储到一个 int 数组中,最后我将该数组和数组的大小传递给将在我的应用程序中使用的其他方法。到目前为止,我的代码从文本文件中读取并将其存储到 ArrayList,而不是数组中。谢谢你。


import java.io.BufferedReader;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileReader;

import java.io.IOException;

import java.net.URISyntaxException;

import java.net.URL;

import java.nio.Buffer;

import java.nio.file.Path;

import java.nio.file.Paths;

import java.util.ArrayList;

import java.util.Scanner;


    public class Test {


        static int i =0;

        public static void main(String args[]) throws URISyntaxException {

            try {

        URL path = ClassLoader.getSystemResource("input.txt");


            if ( path== null) {

                System.out.println("File is not avilable!");

            }


                File myfile= new File(path.toURI());

                //BufferedReader reader = new BufferedReader (new FileReader(myfile));

                Scanner myscan = new Scanner (myfile);


            ArrayList<Integer> input = new ArrayList<Integer>();

                while (myscan.hasNextLine()) {


                input.add(myscan.nextInt());

                }

                int size = input.size();

                System.out.println(input);

                System.out.println("this is the array size: "+ size);

            }catch (IOException e) {

                System.out.println("Something went wrong in your reading file! ");

            }

        }


    }


GCT1015
浏览 114回答 1
1回答

紫衣仙女

由于数组是固定大小的,您应该在创建时知道大小,在下面的代码中给出ArrayIndexOutOfBoundException了文件中是否有超过 10 个值int[] input = new int[10]&nbsp;int i =0;&nbsp;while (myscan.hasNextLine()) {&nbsp; &nbsp; input[i]=myscan.nextInt();&nbsp; &nbsp; &nbsp;i++;&nbsp; &nbsp; }所以更喜欢使用ArrayList<Integer>, 添加文件中的值,然后将其转换为int数组int[] arr = input.stream().mapToInt(Integer::intValue).toArray();
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java