下列程序实现了HDFS嬩建文件的嬮艿,请嬯全嬬嫯上的嬫码。 public class Test{ public static void main(String[] args){ FileSystem fs; Configuration con = new Configuration(); URI ur = new URI("hdfs://192.168.1.2:9000"); _______________________
时间: 2023-06-12 20:05:32 浏览: 170
《你想了解的分布式文件系统HDFS,看这一篇就够了》案例代码
try fs = FileSystem.get(ur, con);
Path path = new Path("/test.txt");
if(fs.exists(path)){
System.out.println("File already exists!");
}else{
fs.create(path);
System.out.println("File created successfully!");
}
}catch(Exception e){
e.printStackTrace();
}
阅读全文