java读取text存入二维数组中

想把这text读入,存入二维数组:求大神帮助!!!!... 想把这text读入,存入二维数组:

求大神帮助!!!!
展开
 我来答
小童鞋_成er
2014-07-16 · 知道合伙人数码行家
小童鞋_成er
知道合伙人数码行家
采纳数:4650 获赞数:22879
主要从事J2EE工作,热爱Java,用心讨论技术,共同进步。

向TA提问 私信TA
展开全部
import java.io.*;
public class FileDemo{
    public static void main(String[] args)throws Exception{
        double[][] arr = getFile("D:\\xx.txt");
for(int i = 0; i < arr.length; i++){
    for(int j = 0; j < arr[i].length; j++){
System.out.print(arr[i][j]+"  ");
    }
         System.out.println();
}
    }
    private static double[][] getFile(String pathName)throws Exception{
        File file = new File(pathName);
        if(!file.exists())
            throw new RuntimeException("Sorry,Not File!");
        BufferedReader br = new BufferedReader(new FileReader(file));
        String str = br.readLine();
        double[][] sanjiaoxing = new double[3][3];
        int i = 0;
        while((str=br.readLine())!=null){
            int j = 0;
            String[] arr = str.split(" +");
            for(String list : arr){
                sanjiaoxing[i][j++] = Double.parseDouble(arr);
            }
            ++i;
        }
        return sanjiaoxing;
    }
}

//文件内容:

sadsadsadsa

123.00   1234.34  213

123.00   1267.34  12

4545.00   6767.34  76

//测试结果:

123.0  1234.34  213.0  

123.0  1267.34  12.0  

4545.0  6767.34  76.0  

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式