中文JAVA技術(shù)平等自由協(xié)作創(chuàng)造

          Java專題文章博客和開源

          常用鏈接

          統(tǒng)計

          最新評論

          java中處理http連接超時的方法

            聲明一個boolean公共變量,表明當(dāng)前httpconnection是否得到服務(wù)器回應(yīng)。
           
             你的連接線程中在連接之前置這個變量為false;
           
             另起一個監(jiān)視線程,拿到那個HttpConnection的連接對象,并循環(huán)監(jiān)視這個boolean公共變量。如果指定時間內(nèi)(20秒后)你的 boolean公共變量還是false,那么就主動置httpconnection=null.這樣,那邊連接線程就會拋出異常退出來。托福答案
           
             寫了Timer類來實(shí)現(xiàn)。(學(xué)習(xí)國外一個網(wǎng)站上的寫法)
           
             class Timer extends Thread {
           
             /** 每個多少毫秒檢測一次 */
           
             protected int m_rate = 100;
           
             /** 超時時間長度毫秒計算 */
           
             private int m_length;
           
             /** 已經(jīng)運(yùn)行的時間 */
           
             private int m_elapsed;
           
             /**
           
             * 構(gòu)造函數(shù)
           
             *
           
             * @param length
           
             * Length of time before timeout occurs
           
             */
           
             public Timer(int length) {
           
             // Assign to member variable
           
             m_length = length;
           
             // Set time elapsed
           
             m_elapsed = 0;
           
             }
           
             /**
           
             * 重新計時
           
             *
           
             */
           
             public synchronized void reset() {
           
             m_elapsed = 0;
           
             System.out.println("reset timer");
           
             }
           
             /**
           
             * 故意設(shè)置為超時,可以在服務(wù)器有返回,但是錯誤返回的時候直接調(diào)用這個,當(dāng)成超時處理托福答案
           
             *
           
             */
           
             public synchronized void setTimeOut()
           
             {
           
             m_elapsed = m_length+1;
           
             }
           
             /**
           
             */
           
             public void run() {
           
             // 循環(huán)
           
             System.out.println("timer running");
           
             for (;;) {
           
             // Put the timer to sleep
           
             try {
           
             Thread.sleep(m_rate);
           
             } catch (InterruptedException ioe) {
           
             continue;
           
             }
           
             synchronized (this) {
           
             // Increment time remaining
           
             m_elapsed += m_rate;
           
             // Check to see if the time has been exceeded
           
             if (m_elapsed > m_length && !isConnActive) { //isConnActive 為全局變量
           
             // Trigger a timeout
           
             timeout();
           
             break;
           
             }
           
             }
           
             }
           
             }
           
             /**
           
             * 超時時候的處理
           
             *
           
             */
           
             public void timeout() {
           
             httpConnection = null;
           
             System.out.println("conn time > " + TIME_OUT + " ms");
           
             }
           
             }
           
             在http連接線程調(diào)用的同是調(diào)用 new Timer(20*1000)。start();
           
             需要重新計時時候調(diào)用timer.reset();
           
           

          posted on 2013-10-08 19:55 好不容易 閱讀(226) 評論(0)  編輯  收藏


          只有注冊用戶登錄后才能發(fā)表評論。


          網(wǎng)站導(dǎo)航:
           
          PK10開獎 PK10開獎
          主站蜘蛛池模板: 贵州省| 天等县| 长乐市| 冕宁县| 桐梓县| 黑龙江省| 读书| 惠安县| 商城县| 永丰县| 微山县| 西昌市| 安化县| 东阿县| 杨浦区| 巴林右旗| 克拉玛依市| 共和县| 云霄县| 宝山区| 吉木乃县| 马龙县| 淄博市| 泰顺县| 仁怀市| 永城市| 石景山区| 永福县| 凉城县| 高陵县| 天镇县| 沅陵县| 班戈县| 常山县| 安乡县| 称多县| 扶风县| 梁河县| 定西市| 金沙县| 正安县|