如何让HttpURLConnection setConnectTimeout在Android下工作?

时间:2017-09-25 05:18:48

标签: java android httpurlconnection

在从远程Web资源中读取文本和二进制内容时,我使用HttpURLConnection建立连接。

我需要实施考虑到

可能出现的问题的方法
  • 连接到远程Web资源期间的连接超时 和
  • 在从远程网络资源下载内容期间

setConnectTimeout()类的setReadTimeout()URLConnection有两个用于这些目的。

当我在控制台中运行我的计算机上的这两个setter的实现时,我正在运行代码时,一切正常。

我使用URL规范作为“www.google.com:81”来模拟我的计算机上的连接超时问题,因为我的防火墙关闭了81端口。

异常会在预期的10秒后引发,并显示在我的控制台中。

然后我通过警告用户有关连接到远程Web资源的可能问题来处理此异常。

但是当我在Android平台下使用超时设置器调用相同的方法时,10秒后不会引发超时异常。

我搜索了所有StackOverflow,并在Android下使用超时时发现了类似问题的描述。

但是没有给出的答案指出问题的具体决定。

任何人都可以指出确切的解决方案如何使setConnectTimeout()setReadTimeout() setter在Android下正常运行这些代码行吗?

package com.downloader;

import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

public class WebDownloader
{
  public static String StringFileContent;
  public static boolean StringFileIsDownloaded;
  public static byte[] BinaryFileContent;
  public static boolean BinaryFileIsDownloaded;

  public static void readStringFileContent(String urlString)
  {
    StringFileContent = "";
    StringFileIsDownloaded = false;
    try
    {
      URL Url = new URL(urlString);
      HttpURLConnection connection = (HttpURLConnection)Url.openConnection();
      connection.setConnectTimeout(10000);
      connection.setReadTimeout(10000);

      connection.setRequestMethod("GET");
      connection.connect();

      InputStream inputStream = connection.getInputStream();
      InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
      BufferedReader in = new BufferedReader(inputStreamReader);

      StringBuilder response = new StringBuilder();
      String inputLine;
      while ((inputLine = in.readLine()) != null)
      {
        response.append(inputLine);
      }
      in.close();

      StringFileContent = response.toString();
      StringFileIsDownloaded = true;
    }
    catch (Exception localException) 
    {
        System.out.println("Exception: " + localException.getMessage());
    }
  }

  public static void readBinaryFileContent(String urlString)
  {
    BinaryFileContent = new byte[0];
    BinaryFileIsDownloaded = false;
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    try
    {
      URL Url = new URL(urlString);
      HttpURLConnection connection = (HttpURLConnection)Url.openConnection();
      connection.setConnectTimeout(10000);
      connection.setReadTimeout(10000);      

      connection.setRequestMethod("GET");
      connection.connect();

      InputStream inputStream = connection.getInputStream();

      byte[] chunk = new byte['?'];
      int bytesRead;
      while ((bytesRead = inputStream.read(chunk)) > 0)
      {
        outputStream.write(chunk, 0, bytesRead);
      }
      BinaryFileContent = outputStream.toByteArray();
      BinaryFileIsDownloaded = true;
    }
    catch (Exception localException) 
    {
        System.out.println("Exception: " + localException.getMessage());        
    }
  }

1 个答案:

答案 0 :(得分:1)

setConnectTimeout(int timeout) 如果服务器不可靠,并且您只想等待15秒才能告诉用户"出现问题"。

setReadTimeout(int timeout)是连接时的超时,你在read()上被阻止,如果读取的块超过超时,你想获得异常