URL Connection (FTP) in Java - Simple Question - Stack Overflow
File file = some file on my computer; String name = file.getName(); URL url = new URL("ftp://user:password@domain.com/" + name +";type=i"); URLConnection urlc = url.openConnection(); OutputStream os = urlc.getOutputStream(); //then what do I do? Just for ...