ObjectInputStream
sürekli veriyi alıyorum, BufferedWriter
nesnesini kullanarak dosyamda yazıyorum. Artan devam eden dosya boyutunu kontrol ediyorum. Şimdi bu yöntemi çalıştırmaya devam eden false
ile while(true)
yöntemini kullanmayı bıraktığımda, BufferedWriter
nesnesini kapatıyorum. Bu işlemden sonra dosyada ne yazılan veriler kaybolur.Kapanış BufferedWriter, dosyadaki tüm dosya verilerini siliyor mu?
private void appendFile(JLabel jLab0x28, Socket client)
{
try
{
if(!continueMe)
{
fileOut.close();
fileOut = null;
in.close();
System.gc();
jLab0x28.setText("<html> <font color='red'> Socket is closed "+client.isClosed()+" </font> </html>");
System.out.println("File size after discontinuing "+
humanReadableByteCount(new File("C:\\ISSUE124_Resolved.txt").length(), true));
}
if(!client.isClosed())
{
try
{
String data = in.readObject().toString();
System.out.println("File size is "+
humanReadableByteCount(new File("C:\\ISSUE124_Resolved.txt").length(), true));
fileOut.append(data);
fileOut.flush();
}
catch (EOFException exp)
{
continueMe = true;
exp.printStackTrace();
System.out.println("A Stream has finished "+exp.toString()+"\n");
}
catch (ClassNotFoundException exp)
{
exp.printStackTrace();
System.err.println(exp.toString());
continueMe = false;
}
}
}
catch(IOException exp)
{
try
{
fileOut.close();
}
catch (IOException e)
{
e.printStackTrace();
}
exp.printStackTrace();
System.err.println("Exception "+exp.toString());
jLab0x28.setText(exp.getMessage());
continueMe = false;
}
}
public static String humanReadableByteCount(long bytes, boolean si) {
int unit = si ? 1000 : 1024;
if (bytes < unit) return bytes + " B";
int exp = (int) (Math.log(bytes)/Math.log(unit));
String pre = (si ? "kMGTPE" : "KMGTPE").charAt(exp-1) + (si ? "" : "i");
return String.format("%.1f %sB", bytes/Math.pow(unit, exp), pre);
}
Giriş Verileri:
File size is 118.3 kB
File size is 118.4 kB
File size is 118.5 kB
File size is 118.7 kB
File size is 118.8 kB
File size is 118.9 kB
File size is 119.1 kB
File size is 119.2 kB
File size is 119.3 kB
Done
Closed Socket connection from client
File size after discontinuing 0 B
Eğer 'yayınlamak yoksa humanReadableByteCount' kod bilmek zor ... dosya boyutu döndürür sadece bir kod –
Onun. Güncelleştirilmiş soruyu şimdi kontrol edin –
Kod da oldukça şüpheli görünüyor. 'Soket' gibi bir parametre olarak geçmek ... bu iyi değil. – Kayaman