0

如果我想访问上传到服务器上的文件夹,我将如何从 Android 项目访问它?我尝试使用以下

public URL(String protocol, String host, String file) 

我的代码:

URL url = new URL("file", "www.websitename.com", "/folderX");
MyClassName path = new MyClassName(url);

似乎它仍然无法访问服务器上的文件夹。有什么我想念的或者我应该使用其他方式的吗?logcat 中没有错误,所以我不确定它是什么。也不会抛出 MalformedURLException。

4

1 回答 1

0

I you want to access the folder and its files from your server you need FTP account details to connect to your server from your android device.There are more FTP Client libraries available to access the files one of them is http://commons.apache.org/net/download_net.cgi

于 2012-10-29T05:14:43.303 回答