0

在活动中,有两个用于获取用户名和密码的编辑文本以及一个用于操作的按钮。这是侦听器代码。

Button sendBtn = (Button) findViewById(R.id.sendBtn);
        sendBtn.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            EditText un = (EditText) findViewById(R.id.usernameEditText);

            EditText pas = (EditText) findViewById(R.id.passwordEditText);
            HttpResponse response = null;

            user_name = un.getText().toString();
            password = pas.getText().toString();
            path = p + user_name;
            my_map = createMap();
            JSONObject ob=null;


            try {
                ob = new JSONObject("{\"Username\":user_name,\"Password\":password}");
            } catch (JSONException e1) {
                e1.printStackTrace();
            }
            try {
                response = makeRequest(path, my_map,ob);
                BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "utf-8"));
                String json = reader.readLine();
                JSONTokener tokener = new JSONTokener(json);
                JSONArray finalResult = new JSONArray(tokener);
            } catch (Exception e) {
                Log.e("HTTP ERROR", e.toString());
            }
        }
    });

这是 makeRequest 函数:

public static HttpResponse makeRequest(String path, Map params,JSONObject obj) throws Exception 
    {   


        DefaultHttpClient httpclient = null;
        HttpPost httpost = null;
        ResponseHandler responseHandler = null;
        //instantiates httpclient to make request

            httpclient = new DefaultHttpClient();

            //url with the post data
            HttpGet httpget = new HttpGet(path);
            httpost = new HttpPost(path);

            //convert parameters into JSON object
            JSONObject holder = obj;


            //passes the results to a string builder/entity
            StringEntity se = new StringEntity(holder.toString(), HTTP.UTF_8);

            //sets the post request as the resulting string
            httpost.setEntity(se);
            //sets a request header so the page receving the request
            //will know what to do with it

            httpost.setHeader("Accept", "application/json");
            httpost.setHeader("Content-type", "application/json");
        try{
            //Handles what is returned from the page 
            responseHandler = new BasicResponseHandler();
        }catch(Exception e){
            Log.e("HTTP ERROR", e.toString());
        }
        return httpclient.execute(httpost, responseHandler);
    }

这里是 WCF 文件:

namespace MyWCFSolution
{

   [ServiceContract]
    public interface IService1
    {
       [OperationContract]
       [WebInvoke(Method = "GET",
           ResponseFormat = WebMessageFormat.Json,
           BodyStyle = WebMessageBodyStyle.Wrapped,
           UriTemplate = "Check")]
       String CheckSQL(string getJson);

    }
}

如何使用 Json 将 wcf 服务器连接到 android。我想发送包含用户名和密码的 Json 对象以及包含用户名、密码、姓名和姓氏的 json 对象的响应。但我在这一点上遇到了麻烦。我无法连接主机,无法发布和获取 json 数据。有人能解释清楚吗?(示例代码、注释)

4

2 回答 2

1

浏览这篇文章,

http://www.vogella.com/articles/AndroidJSON/article.html

http://www.androidhive.info/2012/01/android-json-parsing-tutorial/

ObjectMapper mapper = new ObjectMapper();
ArrayList<RespuestaEncuesta> respuestas = new ArrayList<RespuestaEncuesta>(1);
RespuestaEncuesta r = new RespuestaEncuesta();
r.Comentarios = "ASD";
r.GrupoClienteID = UUID.fromString("00000000-0000-0000-0000-000000000000");
r.GrupoID = 1155;
r.Opcion = "2";
respuestas.add(r);

RespuestaWrapper data = new RespuestaWrapper();
data.Respuestas = respuestas;

mapper.configure(SerializationFeature.WRAP_ROOT_VALUE, true);
String respuestarJson = mapper.writeValueAsString(data);
String url = config[0] + "/GuardaEncuestas";

HttpPost httpPost = new HttpPost(url);
httpPost.setHeader("Accept", "application/json");
httpPost.setHeader("Content-type", "application/json");

StringEntity tmp = new StringEntity(respuestarJson);
httpPost.setEntity(tmp);

DefaultHttpClient httpClient = new DefaultHttpClient();
httpClient.execute(httpPost);

希望会有所帮助

于 2013-01-11T19:59:37.680 回答
0

我前段时间做了一些东西,几乎就像你需要的解决方案一样。

我不知道这是否是最好的解决方法,但效果很好

在你的方法上,首先,如果你想接收一个 JSON,“GET”不是最好的选择,试试 POST,因为 URL QueryString 有字符限制,如果你的 JSON 很大,它不会在那里输入

其次,我在 Net 中声明了一个与 JSON 结构完全匹配的 POCO 对象,然后我声明了它必须接收该对象的方法。

重要的是,您的 json 上的键与 POCO 对象属性完全匹配,是键敏感的

IIS 自动解析从 Android 发布的 JSON 到 Net 中的 POCO 对象,所以它就像魔术一样工作,没有什么可解析的,收到了干净的对象。

当然检查您的 URI 模板是否正常,因为如果不正常,您将永远不会在您的 WCF 服务器上收到请求。

其他事情:在您的 Android 应用程序中,您将 JSON 作为 POST 请求发送。在您的 WCF 中,您的方法正在等待 GET 请求。

于 2013-01-11T20:12:15.300 回答