博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java ME应用设计指南之联网重定向
阅读量:4045 次
发布时间:2019-05-24

本文共 2055 字,大约阅读时间需要 6 分钟。

http 1.1协议允许web服务器临时改变资源的位置,也就是说你访问的资源在另外一个地址。这时候服务器返回的响应代码是302,而新的地址存放在header中,header的名称是location。正常情况下,客户端浏览器应该指向临时的访问地址。但是,移动终端设备差距很大,在处理302返回码的时候,设备之间的行为差异很大。

 

下面的代码可以用来处理重定向问题,但是在部分设备中会导致应用程序出错。

 

connection c = (httpconnection) connector.open(uri);

 

  int status = c.getresponsecode();

string new_uri = c.getheaderfield("location"); // new_uri is null on some devices
if (status == 302) {
  c.close();
  c = (httpconnection) connector.open(new_uri); // breaks here
}
 
由于重定向是http 1.1的特性,那么所有1.1兼容的设备都需要考虑这个问题。下面介绍如何解决这个问题。

 

事实证明在某些设备上,底层的网络协议栈处理重定向的问题,302响应码告诉应用程序内部的处理流程。应用程序应该等待直到响应码等于302。但是有些设备不能正确地从响应中解析出location字段,这样location字段的内容是null,响应码存储在了响应的内容之中。有经验的工程师会采用下面的解决办法。

 

1)解析响应,在location或者响应的内容中查找新地址,如果找到的话关闭以前的连接,转向新的连接。

 

2)如果什么也没有找到的话,那么等待10-1000ms,直到状态码从302转变为200。马上处理响应,当作没有错误发生。

 

下面的代码能够很好的解决重定向的问题,供大家参考和完善。

 

connection c = (httpconnection) connector.open(uri);

int status = c.getresponsecode();
string redirection = httpconnection.getheaderfield("location");
if (status == httpconnection.http_temp_redirect) {
  if (redirection != null) {
    // this the standard http 1.1 behaviour, move on to the redirection uri (basically restarting again).
  } else {
    // parse the content of the http response, if any.
    // lookup for a "location" header, if found, set value to the redirection variable
    if (redirection != null) {
    // since location was found, fall back to the standard behaviour.
    } else {
      long begin_wait = system.currenttimemillis();
      while (system.currenttimemillis() - begin_wait < 1000 || response != 200) {
        sleep(100);
        response = httpconnection.getresponsecode();
      };
      if (response == 200) {
        // once again we're back on tracks, continue processing as if no error has ever happen
      } else {
        // here we're really hopeless. either the server did provided a valid redirection uri,
        // or the device did not preserved it. the best option is probably to fail by throwing an exception.
      };
    };
  };
} else // handle other error codes here
};

 

// handle success here (status == 200)

 

您还可以了解一下http协议的细节,。本文是笔者在阅读sun的技术文章的时候编译的。您可以通过下面的地址阅读原文,也欢迎您编译其他的好文章,共同促进国内java me技术的发展。

转载地址:http://ebedi.baihongyu.com/

你可能感兴趣的文章
C# 重写WndProc 拦截 发送 系统消息
查看>>
C#接口详解
查看>>
C#多态性详解
查看>>
LabVIEW OOP基础
查看>>
JS高阶知识点
查看>>
前端经典面试题(持续更新)
查看>>
Markdown编辑器基本语法
查看>>
深入理解计算机系统(读书笔记)
查看>>
Markdown编辑公式和CSDN-Markdown编辑公式
查看>>
计算机网络(读书笔记)
查看>>
TCP/IP协议(一)
查看>>
TCP/IP协议(二)
查看>>
lnmp、lamp、lnmpa一键安装包
查看>>
20个常用的javascript正则表达式
查看>>
java面向对象(面试题)
查看>>
java 基础类库(IO,集合类,线程)
查看>>
程序员面试金典(一)
查看>>
艾拉托斯特你筛法(java实现)
查看>>
常见算法
查看>>
程序员面试金典(二)
查看>>