アットウィキロゴ

kkll

import java.io.*;

class pro
{
 public static void main(String[] args)
 {
int w;
int h;
w=345;
h=446;

try{

BufferedReader br =
         [[new]] BufferedReader(new FileReader("test.[[txt]]"));

       String[] test = new String[w*h];
       String str;
String x[]=new String[4];
       for(int i=0; i<w*h; i++){
          str = br.readLine();
x=str.split(",");
test[i]=x[0];
       }
       br.close();
    }
    catch(IOException e){
       System.out.println("入出力エラーです。");
    }
 }
}
最終更新:2010年09月28日 07:36