テキストファイルを使用して各行を取り出し、それをclassobject配列に入れたいとします。これは私が配列オブジェクトにこれを変換する必要がある私のコード文字列ファイルをオブジェクト配列に変換する
try {
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("Patient.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(fstream));
String strLine;
// Read file line by line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
System.out.println (strLine);
}
// Close the input stream
in.close();
} catch (Exception e) { // Catch exception if any
System.err.println("Error: " + e.getMessage());
}
であり、これは私はそれがそうで
Patient1 p[] = new Patient1[5];
p[0] = 001, "John", 17, 100, 65, 110, 110, 110, 109, 111, 114, 113, "Swaying, Nausea";
p[1] = 002, "Sun Min", 18, 101, 70, 113, 113, 110, 119, 111, 114, 113, "None";
と見えるようにする方法です。
そして私はポニーが欲しい。真剣に、あなたが試したことを教えて、特定の質問をする必要があります。 –