gpt4 book ai didi

java - Android- HttpUrlConnection addRequestProperty 不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 10:47:40 25 4
gpt4 key购买 nike

经过更多研究后,我现在能够澄清我的问题。我有一个代码段,我知道它可以与我尝试使用的所有其他文件一起使用,除了一个文本文件。该代码使用 URL 和 HTTPURLConnection 检查我发送的文件。我用addRequestProperty("Range", "bytes=0-0")在服务器上获取足够的文件,以便我可以检查 LastModified 字段,而无需再次下载该文件。这是检查文件的代码:

  private void getFileDetails() throws IOException, ParseException {
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.addRequestProperty("Range", "bytes=0-0");
con.connect();
String cr = con.getHeaderField("Content-Range");
URL url2 = new URL("url for json file");
URL url3 = new URL("url for txt file");
Map<String, List<String>> map = con.getHeaderFields();
if(url.equals(url2) || url.equals(url3)) {//This is just for seeing if it added Range
Log.i("HTTP", url.toString());
for (Map.Entry<String, List<String>> entry : map.entrySet()) {
Log.i("HTTP", "Key : " + entry.getKey() +
" ,Value : " + entry.getValue());
}
Log.i("HTTP", "----------------------------------------------------------\n");
}
if (cr == null)//Fails Right here
throw new IOException();
length = Long.parseLong(cr.substring(cr.indexOf('/')+1, cr.length()));
String date = con.getHeaderField("Last-Modified");
String pattern = "EEE, dd MMM yyyy HH:mm:ss Z";
SimpleDateFormat format = new SimpleDateFormat(pattern, Locale.ENGLISH);
Date javaDate = format.parse(date);
lastModified = javaDate.getTime();
}

这是我对有效文件的字段进行测试的输出:

  I/HTTP: Key : null ,Value : [HTTP/1.1 206 Partial Content]
I/HTTP: Key : Accept-Ranges ,Value : [bytes]
I/HTTP: Key : Connection ,Value : [Keep-Alive]
I/HTTP: Key : Content-Length ,Value : [1]
I/HTTP: Key : Content-Range ,Value : [bytes 0-0/15431]
I/HTTP: Key : Content-Type ,Value : [application/json]
I/HTTP: Key : Date ,Value : [Thu, 11 Jan 2018 17:54:00 GMT]
I/HTTP: Key : ETag ,Value : ["3c47-560c8525e5d0b"]
I/HTTP: Key : Keep-Alive ,Value : [timeout=5, max=100]
I/HTTP: Key : Last-Modified ,Value : [Wed, 20 Dec 2017 16:46:15 GMT]
I/HTTP: Key : Server ,Value : [Apache/2.4.18 (Ubuntu)]
I/HTTP: Key : X-Android-Received-Millis ,Value : [1515693240969]
I/HTTP: Key : X-Android-Response-Source ,Value : [NETWORK 206]
I/HTTP: Key : X-Android-Selected-Protocol ,Value : [http/1.1]
I/HTTP: Key : X-Android-Sent-Millis ,Value : [1515693240804]

现在这是不起作用的文本文件的结果:

 I/HTTP: Key : null ,Value : [HTTP/1.1 200 OK]
I/HTTP: Key : Accept-Ranges ,Value : [bytes]
I/HTTP: Key : Connection ,Value : [Keep-Alive]
I/HTTP: Key : Content-Type ,Value : [text/plain]
I/HTTP: Key : Date ,Value : [Thu, 11 Jan 2018 17:55:44 GMT]
I/HTTP: Key : ETag ,Value : ["1370000-560b66148adf5-gzip"]
I/HTTP: Key : Keep-Alive ,Value : [timeout=5, max=100]
I/HTTP: Key : Last-Modified ,Value : [Tue, 19 Dec 2017 19:21:56 GMT]
I/HTTP: Key : Server ,Value : [Apache/2.4.18 (Ubuntu)]
I/HTTP: Key : Transfer-Encoding ,Value : [chunked]
I/HTTP: Key : Vary ,Value : [Accept-Encoding]
I/HTTP: Key : X-Android-Received-Millis ,Value : [1515693344544]
I/HTTP: Key : X-Android-Response-Source ,Value : [NETWORK 200]
I/HTTP: Key : X-Android-Selected-Protocol ,Value : [http/1.1]
I/HTTP: Key : X-Android-Sent-Millis ,Value : [1515693344397]

您可以看到文本文件 header 中缺少 Content-Range 字段,并且状态消息为 OK 而不是 Partial Content。我知道这一点是因为我得到了 cr == null 的真实值意味着它不存在于文本文件的头文件中。我不明白添加出了什么问题。我到处看看人们遇到类似问题的地方,整个事情都行不通。任何帮助,将不胜感激。

编辑:好的,真正的问题是文本文件没有长度字段。它检查 LastModified 和文件大小以查看是否需要更新。

编辑:我现在知道出了什么问题。该文本文件是分块编码的,并且没有 Content-Length

最佳答案

经过大量工作和研究,我发现我试图检查内容长度标签的文件被分块编码,从而消除了该标签。文件所在的 Apache 服务器会自动对太大的 .txt 文件进行分块。解决此问题的方法是将文件扩展名从 .txt 更改为 .bin 文件。这样做给了我 Content-Length header ,使我能够检查文件的大小,而无需实际下载文件。显然,自动分块编码是 HTTP 1.1 中的标准。我不确定这是否是解决此问题的最佳方法,但它对我的情况有效。希望这对其他人有帮助。

关于java - Android- HttpUrlConnection addRequestProperty 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48213503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com