如何在Java ME中检查Internet连接?

时间:2011-12-01 03:06:39

标签: java-me gprs httpconnection

我正在开发Java ME应用程序。我在这里做HttpConnection如下,

HttpConnection httpConnection = (HttpConnection) Connector.open( url.trim() );

变量网址是有效的网址。有时因为GPRS连接不可用,我在HttpConnection错误中收到错误。那么我可以检查我的HttpConnection是否已完成?

1 个答案:

答案 0 :(得分:3)

您可以使用getResponseCode()&用于检查成功连接的getResponseMessage() API的HttpConnection

getResponseCode()将返回整数值200,这意味着它与服务器成功连接。 404表示找不到页面。