mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
another simple example
This commit is contained in:
parent
48601bce6c
commit
28d58bac62
|
@ -0,0 +1,22 @@
|
||||||
|
package com.seaweedfs.examples;
|
||||||
|
|
||||||
|
import com.google.common.io.Files;
|
||||||
|
import seaweedfs.client.FilerClient;
|
||||||
|
import seaweedfs.client.SeaweedOutputStream;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
public class ExampleWriteFile2 {
|
||||||
|
|
||||||
|
public static void main(String[] args) throws IOException {
|
||||||
|
|
||||||
|
FilerClient filerClient = new FilerClient("localhost", 18888);
|
||||||
|
|
||||||
|
SeaweedOutputStream seaweedOutputStream = new SeaweedOutputStream(filerClient, "/test/1");
|
||||||
|
Files.copy(new File("/etc/resolv.conf"), seaweedOutputStream);
|
||||||
|
seaweedOutputStream.close();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue