Chinaunix

标题: How to keep stream open? [打印本页]

作者: zhshqzyc    时间: 2007-04-22 09:27
标题: How to keep stream open?
We all know write a string to a file is simple. Such as:

  1. import java.io.*;
  2. class FileWrite
  3. {
  4.    public static void main(String args[])
  5.   {
  6.       try{
  7.     // Create file
  8.     FileWriter fstream = new FileWriter("out.txt");
  9.         BufferedWriter out = new BufferedWriter(fstream);
  10.     out.write("Hello Java");
  11.     //Close the output stream
  12.     out.close();
  13.     }catch (Exception e){//Catch exception if any
  14.       System.err.println("Error: " + e.getMessage());
  15.     }
  16.   }
  17. }
复制代码

I have a case which needs write strings in many methods.
How can I pass file name or stream and implement it?
(Open the stream, pass the stream into each method)

  1. public void doDiff(String oldFile, String newFile, String Directory) {
  2.       
  3.     String path = System.getProperty("user.dir");
  4.     String DiffFileName = path+'/'+Directory+'/'+ oldFile+"D.txt";
  5.    
  6.     File file = new File(Directory,DiffFileName);
  7.     try{
  8.             FileWriter outFile = new FileWriter(file);
  9.             BufferedWriter out = new BufferedWriter(outFile);
  10.             String s1 =  ">>>> Difference of file \"" + oldFile  
  11.             +  "\" and file \"" + newFile + "\".\n";
  12.             out.write(s1);
  13.             out.flush();
  14.     }
  15.     catch (Exception e){//Catch exception if any
  16.             System.err.println("Error: " + e.getMessage());
  17.     }
  18. showinsert(file)
  19. }
  20. void showinsert(File file)
  21.   {
  22.        if ( printstatus == change ) println( ">>>>     CHANGED TO" );
  23.        else if ( printstatus != insert )
  24.       String sn= ">>>> INSERT BEFORE " + printoldline ;
  25.   // how can I print sn into file
  26. // do I need to create stream again?
  27.        printstatus = insert;
  28.        newinfo.symbol[ printnewline ].showSymbol();
  29.        anyprinted = true;
  30.        printnewline++;
  31.   }
复制代码





欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2