client.getHostConfiguration().setProxy( httpProxyHost, Integer.parseInt( httpProxyPort.trim() ) );
}
}
void zipItUp( InputStream inputstream, String filename, OutputStream outputStream ) {
Zipper zipper = new Zipper( outputStream );
try {
zipper.addEntry( filename, inputstream );
zipper.close();
} catch (IOException e1) {
throw new RuntimeException( "Failed to zip up " + filename, e1 );
}
}