标签: java hadoop
我搜索了网络,但我找到的只是一个声称可以完成的网站。它没有说明如何。
答案 0 :(得分:2)
查看FileSystem的API:Click me 有一种叫做“create()”的方法。
答案 1 :(得分:2)
FileSystem fs = FileSystem.get(conf); Path path = new Path("/my/path/file") OutputStream os = fs.create(path) // write to os os.close()