使用java中的文件输入和输出添加矩阵

时间:2016-01-30 20:21:04

标签: java matrix file-io

我需要在java中使用文件输入和输出进行矩阵添加。如果我的intput文件包含以下,其中2是行,3是列,我需要创建一个包含这两个矩阵的添加的输出文件。我需要使用Scanner从输入文件中获取这些矩阵,但我不知道如何启动它。任何人都可以帮忙解决这个问题吗?

2 3

4 5 6 7 8 9

1 2 3 0 1 2

1 个答案:

答案 0 :(得分:0)

使用Scanner读取输入文件,使用FileWriter写入输出文件

    try {
        Scanner input = new Scanner(new File("path of input file"));
        /*
          read data using for-loop and scanner methods
          and store them in some 2D integer arrays
          at last write them to a file using 

          FileWriter writer = new FileWriter(new File("path of output file"), false);

          in FileWriter constructor ,if you want to append data to output file, use true instead of false
        */
    } catch (IOException e) {
    }