文章列表
在网上看到的代码,还不错:
void getHttpConnection(String url) throws IOException {
HttpConnection c = null;
InputStream is = null;
int rc;
try {
//建议连接
c = (HttpConnection)Connector.open(url);
// 从 HTTP 响应消息获取状态码。
rc = c.getRespons ...