try{
InputStream is = new FileInputStream( "Azureus2.jar" );
InputStream pis = new FileInputStream( "plugins" + File.separator + "azupdater" + File.separator + "Azureus2_2.0.8.5_P1.pat" );
OutputStream os = new FileOutputStream( "test.jar" );
new UpdateJarPatcher( is, pis, os, null );
is.close();
pis.close();
os.close();
}catch( Throwable e ){
Debug.printStackTrace( e );
}