js image对象可以发送http请求吗

JavaScript09

js image对象可以发送http请求吗,第1张

可以。

首先在html文档中准备一个区域用来显示请求返回的内容,并且给onload事件绑定好方法。然后我们建立一个对象。接下来处理xmlhttprequest的onload方法。接下来,调用请求对象的open方法,设置请求的方式为get,并设置请求url。然后调用请求对象的send方法执行请求发送。最后我们来处理一下请求返回成功后,给显示区域赋值的方法。

请参照下面的例子:

/*URL可以随意改*/

String uriAPI = "http://192.168.1.100:8080/test/test.jsp?u=wangyi&p=456"

/*建立HTTP Get对象*/

HttpGet httpRequest = new HttpGet(uriAPI)

try

{

/*发送请求并等待响应*/

HttpResponse httpResponse = new DefaultHttpClient().execute(httpRequest)

/*若状态码为200 ok*/

if(httpResponse.getStatusLine().getStatusCode() == 200)

{

/*读*/

String strResult = EntityUtils.toString(httpResponse.getEntity())

/*去没有用的字符*/

strResult = eregi_replace("(\r\n|\r|\n|\n\r)","",strResult)

mTextView1.setText(strResult)

}

else

{

mTextView1.setText("Error Response: "+httpResponse.getStatusLine().toString())

}

}

catch (ClientProtocolException e)

{

mTextView1.setText(e.getMessage().toString())

e.printStackTrace()

}

catch (IOException e)

{

mTextView1.setText(e.getMessage().toString())

e.printStackTrace()

}

catch (Exception e)

{

mTextView1.setText(e.getMessage().toString())

e.printStackTrace()

}

HTTP请求是指从客户端到服务器端的请求消息,包括消息首行中,对资源的请求方法、资源的标识符及使用的协议。如果HTTP/1.0服务器收到简单请求,它必须回应一个HTTP/0.9格式的简单回应。