zoukankan      html  css  js  c++  java
  • java.net.sockettimeoutexception read timed out

    java.net.sockettimeoutexception read timed out

    超时时间设长一点儿即可

    Socket.setSoTimeout(int timeout);

    -------------------------------------------------------------------------------------------------------------------------------------------------------------------

    注意下面几个超时时间(soTimeout只有100毫秒)

        /**
         * The timeout of the read() of this socket's input stream (in milliseconds)
         
    */
        private int soTimeout = 100;

        /**
         * timeout for connect and close
         
    */
        protected long timeout = 60 * 1000;

        /**
         * retry timeout in millisecods
         
    */
        protected int retryTimeout = 60 * 1000;

        /**
         * maximum retry timeout allowed
         
    */
        protected int maxRetryTimeout = MAXRETRYTIMEOUT;
  • 相关阅读:
    django路由层(一)
    计算机基础2
    Django模板语言
    Django框架介绍
    Python--格式化输出,运算符
    Python---基础
    Tensorflow--TensorflowBoard
    Tensorflow--图和会话
    Tensorflow--Tensor
    Tensorflow--基础结构
  • 原文地址:https://www.cnblogs.com/cuizhf/p/2203739.html
Copyright © 2011-2022 走看看