2016-03-23 25 views
0

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 
+1

Eğer 'yayınlamak yoksa humanReadableByteCount' kod bilmek zor ... dosya boyutu döndürür sadece bir kod –

+0

Onun. Güncelleştirilmiş soruyu şimdi kontrol edin –

+0

Kod da oldukça şüpheli görünüyor. 'Soket' gibi bir parametre olarak geçmek ... bu iyi değil. – Kayaman

cevap

1

Sen OutputStream kapatmak gerekir. Şu

catch(IOException exp) 
     { 
      try 
      { 
       fileOut.close(); 
      } 
    ... 

i var burada, bu

catch(IOException exp) 
     { 

      exp.printStackTrace(); 
      System.err.println("Exception "+exp.toString()); 
      jLab0x28.setText(exp.getMessage()); 
      continueMe = false; 
     } 
try 
{ 
    fileOut.close(); 
} 
catch (IOException e) 
{ 
     e.printStackTrace(); 
    } 
+0

Evet, ancak sadece fileOut.write (veri) gibi bir veri yazdıktan sonra onu yazmak kadar iyi olacak; fileOut.flush(); fileOut.close(); Döngü devam eder etmez beni istisnaya götürecek. Ben sadece FileWriter kullanarak çözdüm ama hala bunu anlamak için istekliyim. –

+0

Döngüden sonra, 'writeOut.close()' ifadesini yazdığınızda, artık yazmayacağınız veya ekleme yaptığınız zaman her döngü yinelemesinde açıp kapatabileceğiniz, ancak daha az verimli olduğu –

+0

bunu yaptım, bu bana java verdi. io.IOException: Aktarım kapalı –

0

Tamam gibi kodunuzu değiştirin size hiçbir IOException karşılaşırsanız ulaşılamaması catch fıkrada bunu yapıyor (ve bu sanmıyoruz) FileWriter nesnesi BufferedWriter intsead kullanıldı ve şimdi dosya verilerim silinmiyor. Tüm kodlar aynıdır, sadece benim için hile yapan Nesne değişikliği.

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); 
    } 

    private void appendFile(JLabel jLab0x28, Socket client) 
    { 
     try 
     { 
      if(!continueMe) 
      { 
       //fileOut.close(); 
       //fileOut = null; 
       fw.close(); 
       fw = 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)); 
        fw.write(data); 
        fw.flush(); 
        //fileOut.write(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(); 
       fw.close(); 
      } 
      catch (IOException e) 
      { 
       e.printStackTrace(); 
      } 
      exp.printStackTrace(); 
      System.err.println("Exception "+exp.toString()); 
      jLab0x28.setText(exp.getMessage()); 
      continueMe = false; 
     } 
    } 


File size is 1.8 MB 
File size is 1.8 MB 
File size is 1.8 MB 
Done 
Closed Socket connection from client 
File size after discontinuing 1.8 MB