DataOutputStream dos = null;
try {
fConnWrap = new FileConnectionWrapper( args[ 0 ].toString() );
fConnWrap.create();
dos = fConnWrap.openDataOutputStream();
byte[] data = ( (Blob) ( args[ 1 ] ) ).getBytes();
dos.write( data, 0, data.length );
dos.flush();
} finally {
if( fConnWrap != null ) {