getContentLength 在 Android 上不适用于 FTP url
以下代码在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.