Ⅰ java 的Webservice 如何獲取post 提交的json數據
java的webservice獲取post提交的json數據的示例如下:
importorg.apache.http.Header;
importorg.apache.http.HttpEntity;
importorg.apache.http.HttpResponse;
importorg.apache.http.NameValuePair;
importorg.apache.http.client.ClientProtocolException;
importorg.apache.http.client.entity.UrlEncodedFormEntity;
importorg.apache.http.client.methods.HttpPost;
importorg.apache.http.entity.StringEntity;
importorg.apache.http.impl.client.DefaultHttpClient;
importorg.apache.http.message.BasicHeader;
importorg.apache.http.message.BasicNameValuePair;
importorg.apache.http.params.BasicHttpParams;
importorg.apache.http.params.HttpConnectionParams;
importorg.apache.http.params.HttpParams;
importorg.apache.http.protocol.HTTP;
importorg.json.JSONException;
importorg.json.JSONObject;importandroid.app.Activity;
importandroid.content.Context;
importandroid.os.Bundle;
importandroid.util.Log;
importandroid.widget.TextView;importjava.io.BufferedReader;
importjava.io.IOException;
importjava.io.InputStream;
importjava.io.InputStreamReader;
importjava.io.UnsupportedEncodingException;
importjava.net.HttpURLConnection;
importjava.util.ArrayList;
importjava.util.List;{
publicContextcontext;
privateTextViewtextView1;
publicstaticStringURL="http://webservice.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl";
;
StringBuilderresult=newStringBuilder();
privatestaticfinalintTIMEOUT=60;
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
HttpParamsparamsw=createHttpParams();
httpClient=newDefaultHttpClient(paramsw);
HttpPostpost=newHttpPost(
"http://webservice.webxml.com.cn/WebServices/WeatherWebService.asmx?wsdl");
List<NameValuePair>params=newArrayList<NameValuePair>();
params.add(newBasicNameValuePair("name","thisispost"));
try{
//向伺服器寫json
JSONObjectjson=newJSONObject();
Objectemail=null;
json.put("email",email);
Objectpwd=null;
json.put("password",pwd);
StringEntityse=newStringEntity("JSON:"+json.toString());
se.setContentEncoding(newBasicHeader(HTTP.CONTENT_TYPE,"application/json"));
post.setEntity(se);post.setEntity(newUrlEncodedFormEntity(params,HTTP.UTF_8));
HttpResponsehttpResponse=httpClient.execute(post);
inthttpCode=httpResponse.getStatusLine().getStatusCode();
if(httpCode==HttpURLConnection.HTTP_OK&&httpResponse!=null){
Header[]headers=httpResponse.getAllHeaders();
HttpEntityentity=httpResponse.getEntity();
Headerheader=httpResponse.getFirstHeader("content-type");
//讀取伺服器返回的json數據(接受json伺服器數據)
InputStreaminputStream=entity.getContent();
=newInputStreamReader(inputStream);
BufferedReaderreader=newBufferedReader(inputStreamReader);//讀字元串用的。
Strings;
while(((s=reader.readLine())!=null)){
result.append(s);
}
reader.close();//關閉輸入流
//在這里把result這個字元串個給JSONObject。解讀裡面的內容。
JSONObjectjsonObject=newJSONObject(result.toString());
Stringre_username=jsonObject.getString("username");
Stringre_password=jsonObject.getString("password");
intre_user_id=jsonObject.getInt("user_id");
setTitle("用戶id_"+re_user_id);
Log.v("urlresponse","true="+re_username);
Log.v("urlresponse","true="+re_password);
}else{
textView1.setText("ErrorResponse"+httpResponse.getStatusLine().toString());
}
}catch(UnsupportedEncodingExceptione){
}catch(ClientProtocolExceptione){
}catch(IOExceptione){
}catch(JSONExceptione){
e.printStackTrace();
}finally{
if(httpClient!=null){
httpClient.getConnectionManager().shutdown();//最後關掉鏈接。
httpClient=null;
}
}
}(){
finalHttpParamsparams=newBasicHttpParams();
HttpConnectionParams.setStaleCheckingEnabled(params,false);
HttpConnectionParams.setConnectionTimeout(params,TIMEOUT*1000);
HttpConnectionParams.setSoTimeout(params,TIMEOUT*1000);
HttpConnectionParams.setSocketBufferSize(params,8192*5);
returnparams;
}
}
Ⅱ 如何在調用webserver的時候直接返回一個json的數據
當ajax發送請求時,如果設置了contenttype為json,那麼請求webservice時,會自動將返回的內容轉為json的格式,json的格式iruxia {"d":"webservice方法返回的字元串內容"} 這時出現一個問題了,如果方法返回的是一個json格式的字元串,那麼如何獲得實際的json對象,而不是只有一個屬性d的json對象呢? 其實很簡單,我們只需要在success回調函數中eval下jquery通過獲取webservice得到的json對象的d屬性,就可以獲取到實際的json對象了。 如下,如果方法返回的是 {"msg":"其實我也是json對象的字元串"} 這種信息,我們如何獲取到msg這個屬性的值呢? 首先一定要明確的時,調用webservice的方法後實際獲取到的json格式的字元串是這樣的 {"d":"{\"msg\":\"其實我也是json對象的字元串\"}"} ,jquery通過這個字元串生成的json對象只有一個屬性,那就是d,d存儲的是webservice方法返回的json格式的字元串信息,而不是json對象,所以不能通過 obj.d.msg來獲取msg信息。而是需要 var realobj=eval('('+o.d+')')來生成實際的json對象,然後realobj.msg才是需要的信息。 例子如下 test.asmx +展開 -C# using System.Web.Script.Services; using System.Web.Services; namespace WebService35 { [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] [System.ComponentModel.ToolboxItem(false)] [System.Web.Script.Services.ScriptService] public class WebService1 : System.Web.Services.WebService { [WebMethod] [ScriptMethod(UseHttpGet = true)] public string method1() { return "非json字元串";//實際返回的json格式的字元串為 {"d":"非json字元串"} } [WebMethod] [ScriptMethod(UseHttpGet = true)] public string method2() { return "{\"msg\":\"其實我也是json對象的字元串\"}"; //實際返回的json格式的字元串為 {"d":"{\"msg\":\"其實我也是json對象的字元串\"}"} } } }
Ⅲ SpringMVC怎麼開發返回json數據的web service 介面
SpringMVC返回json數據有三種方式:
1、第一種方式是spring2時代的產物,也就是每個json視圖controller配置一個Jsoniew。
如:<bean id="defaultJsonView" class="org.springframework.web.servlet.view.json.MappingJacksonJsonView"/>
或者<bean id="defaultJsonView" class="org.springframework.web.servlet.view.json.MappingJackson2JsonView"/>
同樣要用jackson的jar包。
2、第二種使用JSON工具將對象序列化成json,常用工具Jackson,fastjson,gson。
利用HttpServletResponse,然後獲取response.getOutputStream()或response.getWriter()
直接輸出。
示例:
[java] view plain print?
public class JsonUtil
{
private static Gson gson=new Gson();
/**
* @MethodName : toJson
* @Description : 將對象轉為JSON串,此方法能夠滿足大部分需求
* @param src
* :將要被轉化的對象
* @return :轉化後的JSON串
*/
public static String toJson(Object src) {
if (src == null) {
return gson.toJson(JsonNull.INSTANCE);
}
return gson.toJson(src);
}
}
3、第三種利用spring mvc3的註解@ResponseBody
例如:
[java] view plain print?
@ResponseBody
@RequestMapping("/list")
public List<String> list(ModelMap modelMap) {
String hql = "select c from Clothing c ";
Page<Clothing> page = new Page<Clothing>();
page.setPageSize(6);
page = clothingServiceImpl.queryForPageByHql(page, hql);
return page.getResult();
}
然後使用spring mvc的默認配置就可以返回json了,不過需要jackson的jar包哦。
注意:當springMVC-servlet.xml中使用<mvc:annotation-driven />時,如果是3.1之前已經默認注入,3.1之後默認注入RequestMappingHandlerAdapter只需加上上面提及的jar包即可!
如果是手動注入RequestMappingHandlerAdapter 可以這樣設置
配置如下:
[html] view plain print?<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter" p:ignoreDefaultModelOnRedirect="true" > <property name="messageConverters"> <list> <bean class="org.springframework.http.converter.json."/> </list> </property> </bean>
添加包
jackson-mapper-asl-*.jar
jackson-core-asl-*.jar
Ⅳ 用Java開發webservise怎麼返回json數據
標準的webservice是無法直接返回json數據的,因為標准webservice走soap協議,要求請求和相應報文都必須是xml
如果要返回json數據,只能在返回的xml中加屬性,裡面封裝json字元串
Ⅳ c# webservice怎麼樣返回json
首先.webservice 本身就是基於xml的;數據的傳遞就是xml;
其次.你的截圖叫報文.是用來提交soap1.1/1.2 以及接受返回值的xml報文格式
最後,你只需要在你的webservice的方法內,返回string類型;該返回值是一個標準的json格式即可.
當然,ws他不是一項技術而只是一種規范,你可以用很多種方法去實;
比如新建一個頁面(*.jsp/asp/aspx/php等等),通過方法在頁面上print你要輸出的json數據
Ⅵ JAVA 開發 怎麼讓webservice輸出 json格式字元串
你轉成json的字元串,給webservice返回String就是了,不需要特別處理。客戶端收到按JSON解碼就是。
Ⅶ java中怎樣解析webservice返回的json數據
json(javascript Object Notation 的縮寫)是一個基於文本的,人類可讀的,開放標準的輕量級數據交換格式。它繼承了javascript中的簡單數據結構和相關數組對象,稱為對象。不管它 和javascript的瓜葛,json是語言獨立的,幾乎所有編程語言都能解析它。
json以鍵值對來表示數據。每個值被一個鍵名字引用(鍵名字是個string)。如果你想以json表示人名,他們的名字將被"name"鍵引用,如下:
「name」 : 「James」
所以json用一種容易被應用程序傳遞的方式表現數據,非常完美。
所以當從webservice解析數據時,你要做的第一件事就是搞清楚你的模型。下面我們會分析webservice的響應數據,搞清楚哪些bit代表對象,對象數組,對象所屬的欄位,等等。
但是json可以表示哪些類型的數據呢?
1.對象是大括弧內的所有東東
2.字元串用雙引號
3.數字只是簡單的顯示,如 12345
4. 數組由中括弧包圍
5.布爾值從'true'和'false'獲得,沒有引號
6.null值由'null'表示,沒有引號