getContentLength 在 Android 上不适用于 FTP url

发布于 2024-11-05 03:05:13 字数 538 浏览 0 评论 0原文

以下代码在 Android 上打印文件大小的长度 -1,但在桌面 JAVA 上运行良好。 我使用的是安卓2.2。

URL url1 = null;
URLConnection uconn = null;
try {
     url1 = new URL("ftp://FTPHOST/file.zip");
     uconn = url1.openConnection();
     uconn.setDoInput(true);  
     int len= uconn.getContentLength();
     int headersize = uconn.getHeaderFields().size();
     System.out.println("******************************* "+len);
     } catch (Exception e) {     
        e.printStackTrace();
     } 
return null;

让我知道 android 中是否有任何解决方法来获取文件大小..

Following code prints length -1 for filesize on android, but it works fine on desktop JAVA.
I'm using Android 2.2.

URL url1 = null;
URLConnection uconn = null;
try {
     url1 = new URL("ftp://FTPHOST/file.zip");
     uconn = url1.openConnection();
     uconn.setDoInput(true);  
     int len= uconn.getContentLength();
     int headersize = uconn.getHeaderFields().size();
     System.out.println("******************************* "+len);
     } catch (Exception e) {     
        e.printStackTrace();
     } 
return null;

Let me know if any workaround in android to get filesize..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情别恋 2024-11-12 03:05:13

Android 平台的 url 连接代码在底层使用不同的基础(Apache HTTP 客户端),而不是 Oracle JVM 的实现。 Apache HTTP 客户端本身并不像桌面 JVM 那样支持 FTP 下载。

桌面 JVM 使用历史上名为 sun.net.ftp.FtpClient 的类来实现 FTP 功能。 Android 上没有可用的 sun 类,因此这不起作用。您需要拥有自己的 FTP 客户端。

The Android platform's url connection code uses a different base (Apache HTTP client) under the hood, rather than the Oracle JVM's implementation. Apache HTTP client doesn't natively support FTP download the way the desktop JVM does.

The desktop JVM uses a class that was historically named sun.net.ftp.FtpClient for that FTP functionality. None of the sun classes are available on Android, so that doesn't work. You'll need to get your own FTP client.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文