JWUPClient/src/de/mas/wupclient/Starter.java
Maschell b818b0d1fe First commit. Only ls() is working so far
Started to port. Many functions are missing.
Some implementend are working, some are complety untested
2016-10-22 18:52:14 +02:00

17 lines
411 B
Java

package de.mas.wupclient;
import java.io.IOException;
public class Starter {
public static void main(String args[]){
WUPClient w = new WUPClient("192.168.0.035");
try {
w.ls("/vol/storage_mlc01/");
w.FSA_Close(w.get_fsa_handle());
w.closeSocket();
} catch (IOException e) {
e.printStackTrace();
}
}
}