Hi,
I'm trying a really simple method for accessing a file from an FTP server:
URL url = new URL("
ftp://user:password@domain.hopto.org/desktop.ini");
URLConnection urlc = url.openConnection();
InputStream in = urlc.getInputStream();
when I execute this, the program hangs at the last line (getInputStream) indefinitely.
Why would execution hang without throwing an exception?
Start Free Trial