// 文件名更改 @Test public void rename() throws Exception { /* 参数1: 原文件(夹)名 参数2: 修改后的文件(夹)名 */ fs.rename(new Path("/java_test"), new Path("/java_test_1")); }