130131132133134135136137138139140
// Expand war file Expand expand=new Expand(); expand.setSrc( home + "/webapps/" + name ); expand.setDest( home + "/webapps/" + fname); try { expand.execute(); } catch( IOException ex) { ex.printStackTrace(); // do what ? } }
108109110111112113114115116117118