in src/main/java/org/apache/tomcat/jakartaee/Util.java [53:59]
public static void copy(InputStream is, OutputStream os) throws IOException {
byte[] buf = new byte[8192];
int numRead;
while ( (numRead = is.read(buf) ) >= 0) {
os.write(buf, 0, numRead);
}
}