Copy From Stream To File : Stream « File Input Output « Java






Copy From Stream To File

     

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class Util{

    public static File copyFromStreamToFile (InputStream is, File file) {
        FileOutputStream out = null;
        try {
            out = new FileOutputStream(file);
            byte[] buf = new byte[1024];
            int len;
            while ((len = is.read(buf)) >0) {
                out.write(buf, 0, len);
            }

        } catch (Exception ex) {
           
        } finally {
            try {
                is.close();
                out.close();
            } catch (IOException ex) {
               
            }
        }
        return file;
    }

}

   
    
    
    
    
  








Related examples in the same category

1.Show the content of a file
2.Some general utility functions for dealing with Streams
3.Utilities related to file and stream handling.
4.Utility functions related to Streams
5.Utility methods for handling streams
6.Various utility methods that have something to do with I/O
7.General IO Stream manipulation
8.General IO stream manipulation utilities
9.Count the number of bytes read through the stream
10.Count OutputStream
11.File utilities for file read and write
12.An InputStream class that terminates the stream when it encounters a particular byte sequence.
13.An InputStream that implements HTTP/1.1 chunking
14.An OutputStream which relays all data written into it into a list of given OutputStreams
15.Utility code for dealing with different endian systems
16.Copy Inputstream To File
17.Load Stream Into String
18.Reads the content of an input stream and writes it into an output stream.