* @param deleteSource
* @return true,false
*/
public boolean copyFiletoFs(String fsUrl, String localFile, String dst,
boolean deleteSource) {
upLoadDao upload = new upLoadImpl();
getConf().getStrings("dfs.replication");
System.out.println(getConf().toString());
System.out.print("dfs.replication:"
+ getConf().get("dfs.replication").toString());
return upload.copyFiletoFs(getConf(), localFile, dst, deleteSource);
}