Copying a file using InputStream and OutputStream

suggest change

We can directly copy data from a source to a data sink using a loop. In this example, we are reading data from an InputStream and at the same time, writing to an OutputStream. Once we are done reading and writing, we have to close the resource.

public void copy(InputStream source, OutputStream destination) throws IOException {
  try {
      int c;
      while ((c = source.read()) != -1) {
          destination.write(c);
      }
  } finally {
      if (source != null) {
          source.close();
      }
      if (destination != null) {
          destination.close();
      }
  }
}

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


File I/O:
* Copying a file using InputStream and OutputStream

Table Of Contents
7 File I/O
8 Arrays
10 Maps
11 Strings
25 JAXB
29 Enums
32 Audio
41 Scanner
63 Logging
75 Lists
78 Sets
89 JAX-WS
96 XJC
98 Process
106 Modules
114 Applets
122 JNDI
139 JavaBean
141 Literals
144 Packages
150 JMX
153 JShell
159 Sockets
167 Enum Map
175 Hashtable
177 SortedMap