mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-08 15:41:15 +02:00
Updated SeaweedFS Java Client (markdown)
+4
-4
@@ -15,16 +15,16 @@ Implemented APIs for file system storage. The blob storage APIs is not included.
|
||||
## Read File
|
||||
|
||||
```
|
||||
FilerGrpcClient filerGrpcClient = new FilerGrpcClient("localhost", 18888);
|
||||
SeaweedInputStream seaweedInputStream = new SeaweedInputStream(filerGrpcClient, "/test.zip");
|
||||
FilerClient filerClient = new FilerClient("localhost", 18888);
|
||||
SeaweedInputStream seaweedInputStream = new SeaweedInputStream(filerClient, "/test.zip");
|
||||
// next, you can use seaweedInputStream as a normal InputStream
|
||||
```
|
||||
|
||||
## Write File
|
||||
|
||||
```
|
||||
FilerGrpcClient filerGrpcClient = new FilerGrpcClient("localhost", 18888);
|
||||
SeaweedOutputStream seaweedOutputStream = new SeaweedOutputStream(filerGrpcClient, "/test/"+filename);
|
||||
FilerClient filerClient = new FilerClient("localhost", 18888);
|
||||
SeaweedOutputStream seaweedOutputStream = new SeaweedOutputStream(filerClient, "/test/"+filename);
|
||||
// next, you can use seaweedOutputStream as a normal OutputStream
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user