copyToLocalFile报错:(null) entry in command string: null chmod 0644
Posted wangchaoqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了copyToLocalFile报错:(null) entry in command string: null chmod 0644相关的知识,希望对你有一定的参考价值。
FileSystem init() throws URISyntaxException, IOException, InterruptedException {
Configuration conf=new Configuration();
conf.set("fs.defaultFS","hdfs://wangchaoqi01:9000");
return FileSystem.get(new URI("hdfs://wangchaoqi01:9000"),conf,"root");
}
void download() throws InterruptedException, IOException, URISyntaxException {
FileSystem fs=this.init();
fs.copyToLocalFile(new Path("hdfs://wangchaoqi01:9000/1.txt"),
new Path("F:/"));
}
解决:
fs.copyToLocalFile(false,hdfs_path, local_path,true);
第一个false参数表示不删除源文件,第4个true参数表示使用本地原文件系统,因为这个Demo程序是在Windows系统下运行的。
以上是关于copyToLocalFile报错:(null) entry in command string: null chmod 0644的主要内容,如果未能解决你的问题,请参考以下文章
mybatis学习 -每天一记 mybatis insert null 报错