Hi all,
I am very new to java, and have been struggling with it. I am looking for an easy way to get files that are situated on a remote server. For this I created a local ftp server on my windows xp, and now I am trying to give my test applet the following address:
try
{
uri = new URI("ftp://localhost/myTest/test.mid");
File midiFile = new File(uri);
}
catch (Exception ex)
{
}
and of course I receive the following error: URI scheme is not "file"
I've been trying some other ways to get the file, they don't seem to work. Any insight of how I should do it? This should be straight forward shouldn't it? (BTW, I am also keen to perform an http request)