Я не могу загрузить exe-файл с сервера.
т.е. Я могу загрузить exe-файл со своего компьютера и сохранить его на диске, но не с другого сервера, но когда я пытаюсь получить к нему доступ с сервера, он не загружается и выдает ошибку типа:
java.io.FileNotFoundException: http:\10.128.10.60\home\test\filexilla.exe(The filename, directory name, or volume label syntax is incorrect)
Ниже мой код:
fileInputStream = new FileInputStream(new File("E:\\Sunnywellshare\\perl\\filezilla.exe"))
//this code is working fine
fileInputStream = new FileInputStream(new File("http://10.127.10.10/test/filezilla.exe"));
//this code is from remote location.and throwing error
Как мне решить исключение FileNotFoundException?