1. 创建目录
public static void main(String[] args) throws IOException{
String hdfsDest = "hdfs://192.168.1.150:9000/tmp/123/321"; // HDFS中存储的文件名
Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(URI.create(hdfsDest), conf);
fs.mkdirs(new Path(hdfsDest));
fs.close();
}
// 父目录可能不存在于HDFS中,将会一起启动。