通过Java Android使用RESTful C#Web服务

时间:2013-11-03 12:41:22

标签: c# java android .net rest

亲爱的,

我知道这个标题看起来很流行而且容易,但我面对的是太奇怪了。

简单地说,我在服务器上发布了一个RESTful C#.NET 4.0 Web服务,我想在我的Android应用程序中通过Java使用它,这很容易吗?

问题是:每当我调用.NET Web服务并获得响应时,java都无法将返回字符串解析为Json。

错误讯息:

org.json.JSONException: Value {lhs:"1 Euro",rhs: "1.3711 U.S. dollars",error: "",icc: true} of type java.lang.String cannot be converted to JSONObject
    at org.json.JSON.typeMismatch(JSON.java:111)
at org.json.JSONObject.<init>(JSONObject.java:158)
at org.json.JSONObject.<init>(JSONObject.java:171)
at com.itrack21.mobileapp.LoginActivity.getUserInfo(LoginActivity.java:151)
at com.itrack21.mobileapp.LoginActivity$1$1.run(LoginActivity.java:114)
at java.lang.Thread.run(Thread.java:841)
threadid=17: thread exiting with uncaught exception (group=0x4164d700)

Java代码:

public void getRate(String link) {

        try {
                URL url = new URL(link);
                URLConnection connection = url.openConnection();
                InputStream str = connection.getInputStream();
                InputStreamReader reader = new InputStreamReader(str);
                BufferedReader bufReader = new BufferedReader(reader);
                String line=new String();
                StringBuffer buffer = new StringBuffer();

                while( (line=bufReader.readLine()) != null) {
                    buffer.append(line);
                }

            JSONObject obj = null;
            try {
                obj = new JSONObject(buffer.toString());
            } catch (JSONException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            }

            String rhs = "";
            try {
                rhs = obj.getString("rhs");
            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            Log.i("getRate","Converted Currency = " + rhs.toString());

        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

调试:

我做了很多调试方案,但没有运气,这里我会用最奇怪的一个来描述问题。

  1. 我使用我的java代码使用Google网络服务进行货币转换,使用以下链接http://www.google.com/ig/calculator?hl=en&q=1USD=?EUR,我得到的响应如下:{lhs: "1 U.S. dollar",rhs: "0.726321906 Euros",error: "",icc: true}。在这里,我的代码完美无缺。

  2. 我从Google网络服务中复制了精确的Json值并使用我的代码正常工作,并将其作为HARD CODED String返回到我的RESTful C#服务中,如下所示:

  3. C#代码:

    public string GetInfo()
    {
    return "{lhs:\"1 Euro\",rhs: \"1.3711 U.S. dollars\",error: \"\",icc: true}";
    }
    
    1. 我使用用于调用Google网络服务的相同代码请求我的C#.NET网络服务我上面列出了org.json.JSONException: Value {lhs:"1 Euro",rhs: "1.3711 U.S. dollars",error: "",icc: true} of type java.lang.String cannot be converted to JSONObject at org.json.JSON.typeMismatch(JSON.java:111)错误。

    2. 当我将返回值作为HARD CODE复制并粘贴到我的代码中时,它可以正常工作。

      JSONObject obj = null;
      try {
          obj = new JSONObject("{lhs:\"1 Euro\",rhs: \"1.3711 U.S. dollars\",error: \"\",icc: true}");
      } catch (JSONException e1) {
          // TODO Auto-generated catch block
          e1.printStackTrace();
      }
      
    3. 许多“疯狂”调试方案已完成,包括更改服务器本身,但没有运气。

      我做错了什么?

      问候,

2 个答案:

答案 0 :(得分:0)

在JSON中,您还需要将键包装在引号中。所以对此:

{lhs: "1 U.S. dollar",rhs: "0.726321906 Euros",error: "",icc: true}

你必须这样做:

{"lhs": "1 U.S. dollar","rhs": "0.726321906 Euros","error": "","icc": "true"}

您可以在以下网址查看您的JSON:http://jsonlint.com/

答案 1 :(得分:0)

经过长时间的调试过程,我得到了原因,然后是解决方案。我们走了:

  1. 通过Chrome浏览器访问Google Maps Web Service,您将获得Json回复。出于调试目的,右键单击页面并选择View page source。请注意,Json的字符串是纯Json而没有添加。

  2. 当您通过Chrome浏览器使用C#.NET响应重复相同的过程时,您会注意到响应不是纯粹的Json,它包围着这个:<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">{JSON String HERE}</string>

  3. 解决方案:

    要删除响应周围的此字符串,您必须将Json字符串作为System.IO.Stream返回。这里所需的代码更改:

    public System.IO.Stream GetInfo()
    {
        OutgoingWebResponseContext context = WebOperationContext.Current.OutgoingResponse;
        context.ContentType = "text/plain";
        return new System.IO.MemoryStream(ASCIIEncoding.Default.GetBytes("{lhs:\"1 Euro\",rhs: \"1.3711 U.S. dollars\",error: \"\",icc: true}"));
    }
    

    此解决方案适用于我,但它是最佳解决方案吗?从对象转换为Json,然后从Json字符串转换为字节是一个小开销,有什么想法?建议?