程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> Java ME應用設計指南之聯網重定向

Java ME應用設計指南之聯網重定向

編輯:關於JAVA

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協議的細節,http://www.ietf.org/rfc/rfc2616.txt。本文是筆者在閱讀SUN的技術文章的時候編譯的。您可以通過下面的地址閱讀原文,也歡迎您編譯其他的好文章,共同促進國內Java ME技術的發展。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved