diff options
| author | tspitzer | 2013-09-09 15:59:37 +0200 |
|---|---|---|
| committer | tspitzer | 2013-09-09 15:59:37 +0200 |
| commit | e5dfd4e457635ff292190cd800cf9ade0ec7cd8c (patch) | |
| tree | 5d5166ab9472fd8f9253f14fb67efa9913e53886 /Dozentenmodul/src/ftp/ftp.java | |
| parent | neue features (diff) | |
| download | tutor-module-e5dfd4e457635ff292190cd800cf9ade0ec7cd8c.tar.gz tutor-module-e5dfd4e457635ff292190cd800cf9ade0ec7cd8c.tar.xz tutor-module-e5dfd4e457635ff292190cd800cf9ade0ec7cd8c.zip | |
Alle GUIs für das bauen einer VL auf Basis einer Rohling sind fertig.
Nun muss noch die DB Anbindung implementiert werden
Diffstat (limited to 'Dozentenmodul/src/ftp/ftp.java')
| -rw-r--r-- | Dozentenmodul/src/ftp/ftp.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Dozentenmodul/src/ftp/ftp.java b/Dozentenmodul/src/ftp/ftp.java index 08ff65f1..036236a5 100644 --- a/Dozentenmodul/src/ftp/ftp.java +++ b/Dozentenmodul/src/ftp/ftp.java @@ -1,16 +1,16 @@ package ftp;
-import java.io.File;
+
import java.io.FileOutputStream;
import java.io.IOException;
-import java.io.OutputStream;
+
import java.net.SocketException;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
public class ftp {
-
+
/**
* @param args
*/
@@ -53,6 +53,7 @@ public class ftp { ftp.login("tspitzer", "21071989");
ftp.changeWorkingDirectory("_vorlagen");
FileOutputStream os=new FileOutputStream(location+"\\"+name);
+
System.out.println("Start");
System.out.println(location+name);
|
