目前我是这样用的,使用了Lang.readAll和Streams.utf8r的方法组合,在Files工具类里面有什么简便的方式么?
···
public static void read(String path) {
FileSystem fs = getFileSystem(path);
try (FSDataInputStream is = fs.open(new Path(path));) {
String content = Lang.readAll(Streams.utf8r(is));
System.out.println(content);
} catch (IOException e) {
logger.error(ExceptionKit.getStackTrace(e));
}
}
···