1

我正在做 android 本机应用程序,它需要使用登录凭据和 IP 地址显示来自服务器端 PC 的所有文件和文件夹。我可以在那里做一些事情(比如复制、移动、删除)。我不对此有任何经验。我怎么能启动这个?给一些想法。

谢谢

4

1 回答 1

0

Make a request over http to your server and encode the server response in JSON format and parse the response with the JSONObject class.

Server-side example with PHP to list files in a directory

$file_id = 0;
$files = array();

if ($handle = opendir('/path/to/files')) {

    while (false !== ($entry = readdir($handle))) {
        $files[$file_id] = $entry;
        $file_id ++;
    }
    echo json_encode($files);
    closedir($handle);
}
于 2012-06-01T06:44:21.027 回答