FSDataOutputStream out = fs.create(file, true,
getConf().getInt("io.file.buffer.size", 4096),
(short)getConf().getInt("dfs.replication", 3),
fs.getDefaultBlockSize());
for(long i=0; i<fileSize; i++) {
out.writeByte('a');
}
out.close();
}
/** Main program.