in main/src/main/java/org/apache/james/jdkim/DKIMCommon.java [102:111]
public static void streamCopy(InputStream bodyIs, OutputStream out)
throws IOException {
byte[] buffer = new byte[2048];
int read;
while ((read = bodyIs.read(buffer)) > 0) {
out.write(buffer, 0, read);
}
bodyIs.close();
out.close();
}