0

我有一个存储文件的网络服务器http://user.mysite.com/content
现在我想在我的 android 应用程序中实现的只是下载用户可以在该服务器上上传的每个文件,我在 android 中创建了可以下载文件并将其存储到 sdcard 的函数像这样的东西:

public void doDownload(){
    try {
        int count;
        URL url = new URL("http://user.mysite.com/content");
        URLConnection connection = url.openConnection();
        connection.connect();
        int lengthOfFile = connection.getContentLength();
        long total = 0;
        InputStream input = new BufferedInputStream(url.openStream());
        OutputStream output = new FileOutputStream(f);
        byte data[] = new byte[1024];
        while ((count = input.read(data)) != -1) {
            total += count;
            publishProgress((int)(total/1024),lengthOfFile/1024);
            output.write(data, 0, count);
        }
        output.flush();
        output.close();
        input.close();
    }
    catch (Exception e) {
         Log.e("Download Error: ", e.toString());
    }
}

如何检索服务器上的文件列表和这些文件的 URL + 文件名并使用循环将每个文件下载到应用程序?

要获取文件列表,我列出了一些内容:

public List clientServerFileList(){
    URL url;
    List serverDir = null;

    try {
        url = new URL("http://user.mysite.com/content/");           
        ApacheURLLister lister = new ApacheURLLister();         
        serverDir = lister.listAll(url);
    } 
    catch (Exception e) {
        e.printStackTrace();
        Log.e("ERROR ON GETTING FILE","Error is " +e);
    }
    System.out.println(serverDir);
    return serverDir;   
} 

我的服务器是: Apache/2.2.24 (Unix) mod_ssl/2.2.24 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 服务器在 user.mysite.com 端口 80

4

1 回答 1

0
  1. 向您的服务器发送 POST 或 GET 请求。当您的服务器收到此请求时,将 JSON 或 XML 响应给客户端。
  2. 解析服务器响应给您的 XML 或 JSON,获取文件名和...,您可以下载文件列表中的文件。
于 2013-05-02T02:15:35.440 回答