0

我想从 URL 下载图像文件。我的代码适用于互联网上图像的任何 URL,但我找不到从我自己的 PC 下载文件的方法,使用它的 URL,通过 wifi 热点连接到我的 android 手机。这甚至可能吗?如果是,请告诉我如何。

           `URL url = new URL("file://192.168.43.198/f:/ur/demo.jpg");
            URLConnection conection = url.openConnection();
            conection.connect();

            // getting file length
            int lenghtOfFile = conection.getContentLength();

            // input stream to read file - with 8k buffer
            InputStream input = new BufferedInputStream(url.openStream(), 8192);

            // Output stream to write file
            OutputStream output = new FileOutputStream("/sdcard/downloadedfile.jpg");

            byte data[] = new byte[1024];

       while ((count = input.read(data)) != -1) {
                total += count;

                // writing data to file
                output.write(data, 0, count);
            }

 `
4

1 回答 1

0

您的计算机不会对“文件:”协议做出反应。在互联网上,您将使用“http:”,所以在这里也使用它。在你的电脑上安装一个网络服务器让它运行。

于 2014-02-16T10:49:38.750 回答