SeaweedFS Java客户端
快速开始
创建一个连接管理器
FileSource fileSource = new FileSource ();
ConnectionProperties connectionProperties
= new ConnectionProperties . Builder ()
.host( " localhost " )
.port( 9333 )
.maxConnection( 100 ) . build();
// Startup manager and listens for the change
fileSource . startup();
创建文件操作模板
// Template used
2021-10-19 14:10:43
50KB
Java
1