`
雨过天晴0521
  • 浏览: 155198 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Useful Java code samples

    博客分类:
  • java
 
阅读更多
Java I/O

Copy a File

public void CopyFile(File in, File out) throws Exception {
         FileInputStream fis = new FileInputStream(in);
         FileOutputStream fos = new FileOutputStream(out);
         byte[] buf = new byte[1024];
         int i = 0;
             while((i=fis.read(buf))!=-1) {
             fos.write(buf, 0, i);
         }
         fis.close();
         fos.close();
}


More samples refer to
http://www.exampledepot.com/egs

RSS:http://www.exampledepot.com/rss.xml

Java language
http://www.exampledepot.com/egs/Java%20Language/pkg.html

Java packages
http://www.exampledepot.com/egs/index.html

Java programs
http://www.exampledepot.com/taxonomy/term/389
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics