Here you can find the source of copyFileToStream(File in, OutputStream out)
public static void copyFileToStream(File in, OutputStream out) throws IOException
//package com.java2s; //License from project: Open Source License import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.OutputStream; import java.nio.channels.Channels; import java.nio.channels.FileChannel; import java.nio.channels.WritableByteChannel; public class Main { public static void copyFileToStream(File in, OutputStream out) throws IOException { FileInputStream is = new FileInputStream(in); FileChannel inChannel = is.getChannel(); WritableByteChannel outChannel = Channels.newChannel(out); try {//from w ww. ja v a 2 s . co m inChannel.transferTo(0, inChannel.size(), outChannel); } finally { if (is != null) is.close(); if (inChannel != null) inChannel.close(); if (outChannel != null) outChannel.close(); } } }