将JSONObject发送到URL

时间:2013-11-28 03:36:25

标签: java android json

我有一个解析来自localhost的数据的应用程序,我将其中一个数据(名为stuff)发送到另一个活动(名为WView)。现在,在我的第二个活动(WView)中,我想将stuff发送到另一个链接。 我使用ArrayList<NameValuePair>第一次将stuff发送到localhost,然后我将对象更改为字符串名stuff,仅用于测试。

现在,问题是,我正在使用以下代码。 <{1}}中的“添加”,有错误。

请告诉我,如果我使用写入方式,或者是否错误,请告诉我如何使其正确。 我粘贴我的代码用于发送内容,从WView到另一个链接。

postParameters.add(stuff.toString());

1 个答案:

答案 0 :(得分:1)

正确的语法是:

    postParameters.add(new BasicNameValuePair("key", Value));

在您的情况下,您需要更改为:

    postParameters.add(new BasicNameValuePair("stuff", stuff.toString()));