免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2107 | 回复: 0
打印 上一主题 下一主题

How to keep stream open? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-04-22 09:27 |只看该作者 |倒序浏览
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.   }
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP