我想寫出我的數組的值到一個文件。寫入磁盤文件不正確
public void Write(String fileName) throws IOException
{
PrintWriter outFile;
outFile = new PrintWriter(new FileWriter(fileName));
for(int K = 0 ; K < CurrentCount ; K++)
outFile.println(List[K].toString());
outFile.close();
}
的數據輸入到文件是:氣象站@ 1194a4e
的氣象站類有我的構造函數和get和set方法
List[K] = new WeatherStation(Location, Temp, Title, Air, Pollen);
我期待所有的屬性上面來獲得放入文件中。
...他們呢? – fredley 2011-03-11 00:55:50
[How to support println in a class?](http://stackoverflow.com/questions/27647567/how-to-support-println-in-a-class) – Raedwald 2016-03-26 14:09:39
http:// stackoverflow的可能重複.COM /問題/ 29140402 /如何-DO-I-打印我的Java對象,而無需-得到-sometype2f92e0f4 – Raedwald 2016-03-26 14:19:45