最近在做一個springboot的前置服務調用c#.net的webservice,接口傳回的是json字元串,發現.net 的webservice傳回的資料在資料的外層都會包含一層xml的定義,而我隻想要裡面的json字元串。
最後的解決方法:
1、接口傳回的資料格式為void,無傳回值
2、使用Context.Response.Write來進行資料的傳回,注意後面一定要加上Response.End()
Context.Response.Write(HttpUtility.UrlEncode(encystring));
Context.Response.End();
3、然後就可以使用json轉換各種對象了