Applet HttpUrlConnection Chunked Response问题

时间:2009-10-19 14:27:15

标签: java http applet

我有一个带有HttpUrlConnection的Applet到IIS 6.0 Server。 服务器响应分块数据,但有时(某些浏览器)我有问题。 服务器答案贴在某个缓冲区中,当服务器超时连接时到达我。

url = new URL(urlStr); 
huc = (HttpURLConnection) url.openConnection();
huc.setDefaultUseCaches(false); 
huc.setAllowUserInteraction(true);
huc.setDoInput(true);
huc.setUseCaches(false);
huc.setRequestProperty("Pragma", "no-cache");
huc.setRequestProperty("Cache-Control", "no-cache");
huc.setRequestProperty("Expires", "-1");
huc.setRequestProperty("Content-type", "text/html");
InputStream is = huc.getInputStream();
... 
while (!trunkStop) {
  while (errorConnection && !trunkStop) {
    connectToServer();
     if (errorConnection) {
       sleepThread();
     }
  }

  while (!errorConnection && !trunkStop) {
            readData();
  }
 ...
}
...
void readData() {
    if (trunkStop) {
        return;
    }
    try {
        readLine();
        addTask();//put to task queue
    } catch (Exception e) {
        getLogger().log(Level.WARNING, "Error connection...");
    }
}
...
String readLine() throws IOException, InterruptedException {
    sb = new StringBuilder();
    int prev = -1;
    while (!errorConnection && !trunkStop) {
        read = is.read();
        if (read == -1) {
            if (System.currentTimeMillis() - timer > 150000) {
                getLogger().log(Level.SEVERE, "RECONNECT BY TIMEOUT");
                errorConnection = true;
            }
            Thread.sleep(10);
            continue;
        } else if (read == 13) {

        } else if (read == 10 && prev == 13) {
            break;
        } else {
            sb.append((char) read);
            System.out.print((char) read);
        }
        prev = read;
        timer = System.currentTimeMillis();
    }
    return sb.toString();
}

某些浏览器缓冲区,我不知道。 此时IIS已经发送了答案,这是客户端问题, IE7,java 1.6.0_16

有什么想法吗?

2 个答案:

答案 0 :(得分:0)

readLine()中你似乎做了一件奇怪的事。

read==-1(表示流的结束)时,您正在等待150个secondes,然后设置errorConnection=true,这允许readLine以及随后readDatawhile (!errorConnection & !trunkStop) { readData(); }停下来。

这150个secondes可能比IIS服务器的连接超时更长。


顺便说一下。您正在使用按位和运算符(&)而不是逻辑和运算符(&&)您确定这是您想要的吗?检查区别。

& java bit-wise and operator

&& java McCarthy and operator

答案 1 :(得分:0)

问题解决了!

客户端使用代理。 HTTPS使用帮助