テキストファイルn.txt
に整数があり、2列の整数で、列は空白で区切られています。
これらの整数を読み取り、その間のスペースをエスケープして、これら 2 つの整数を 2 つの別々の整数に入力したいと考えています。以下のコードは、String
取得した を解析するために使用されます。String
代わりに、を分割しString
て配列を分離し、空のスペースを区切り文字として使用できる方法があるかどうかを知りたかったのですか?
String URL="C:\\User\\Nimit\\Desktop\\n.txt";
File f = new File(URL);
FileReader inputF = new FileReader(f);
BufferedReader in = new BufferedReader(inputF);
int[] a= new int [1000];
int[] b= new int [1000];
String s =in.readLine();
while(s!=null)
{
int i = 0;
a[i] = Integer.parseInt(s,b[i]); //this is line 19
//*not important*// System.out.println(a[i]);
s = in.readLine();
}
in.close();
System.out.println("the output of the file is " +f);