The jsonarray tag has no wiki summary.
4
votes
2answers
2k views
How can I parse the following JSON for Windows Phone 7?
I have a JSON result that has an array of messages:
{
"messages": [
{
"message": {
"for_user_login": null,
"message_type": "normal",
...
3
votes
3answers
126 views
Converting JSONArray to normal Array
I created a a JSON Array from a normal array of user defined object.How do i convert the JSONArray back to a normal array of the user-defined type..?
I'm using Json for shared preference in ...
3
votes
4answers
117 views
Android JSON Object
I have a JSON format like this
{"response":{"status":true,"result":"user_exists"}}
Now i am trying to retrieve the Status value to do some logic
JSONObject jData = new JSONObject(data);
...
2
votes
2answers
122 views
Passing JSON array between activities through intent
This has been asked once before but that didn't work for me at all. So I thought I'll just ask again.
I have a JSONarray that I want to pass to my second activity using an intent.
This is a part of ...
2
votes
0answers
82 views
Setting Json Array in listview but while clicking on particular list item, listview get hang
I am parsing below jsong String and able to parse also and set in listview but while clicking on particular list item it get hang and doesn't fire any error or doesn't perform any action. What will be ...
1
vote
4answers
87 views
How to create JSON Array string given below?
I want to create and to send JSON Array string given below:
I am using JSON Framework, it can parse JSON array but how
to create JSON Array
{
"deferred": [
{
"API": "Test1",
"data": ...
1
vote
1answer
122 views
Android: JSONArray & JSONObject to ListView strange readings
Tried using the following:
Populate Listview from JSON
To make a listview which uses a JsonArray containing Json Objects. For some reason, the
'public View getView(int position, View convertView, ...
1
vote
2answers
102 views
Error on constructing JSONArray from String
I am trying to construct a JSONArray from a String, and extract the JSONObjects from inside it. Here is my code:
String jsonStr = "[{\"name\" : \"John Doe\",\"gender\":\"male\",\"age\":40},{\"name\" ...
1
vote
1answer
198 views
how to parse a jsonObject using JsonArray that have dynamic id's in start as integer
sorry but i amm not a player of Json it's my first time. so please tell me how can i parse a the following rsponse using jsonArray. As JsonObject need an string to return the the JsonArray but in my ...
0
votes
2answers
36 views
JSON Object creation and JSON array manipulation
This is basically a theoretical question on the way the decoding of a JSON script takes place. I am new to JSON and JavaScript, so was taking a tutorial. It gave me a few example codes to work on. I ...
0
votes
1answer
42 views
Sertonin JSON: how to read a JSON array into a Java List?
Here is my code:
JsonReader reader = new JsonReader(readTwitterFeed);
List<Result> results = reader.read(new TypeDefinition(List.class, Result.class));
Result is a simple class with just one ...
0
votes
1answer
18 views
Database query to JsonArray
I´m getting data from a database, the query works in the correct way, but I want to save that data in JsonArray.
while(rset.next()){
for(int i=0;i<numeroColumnas;i++){
...
0
votes
2answers
49 views
JSON array and Android list view not working
Ok so i have a php script:
<?php
mysql_connect("localhost","root","root");
mysql_select_db("FYP");
$sql=mysql_query("select team_name, games_played, games_won,
games_drawn, games_lost, ...
0
votes
3answers
38 views
org.json.JSONArray cannot read my JSON object
Im writing a client/server app for android that sends a username and password to the server and receives a status for that user account.
My php code is like this:
$return['login'] = 'success';
...
0
votes
1answer
75 views
Removing Object from JSONArray
I have an application that gets an api key and account name from a webservice, I am storing this apikey and account name for further use(multiple accounts and apikeys).
because you can only store ...
0
votes
1answer
64 views
Is net.sf.json.JSONArray compatible with org.json.JSONArray
I am trying to use some of the json conversion methods available in net.sf.json.JSONArray and net.sf.json.JSONObject but it appears these objects are not compatible with (Androids) org.json.JSONArray ...
0
votes
2answers
39 views
Parse json field that my be an JSONObject or JSONArray in java
I'm using the json.org library to parse my json. But I have a field called "messages" that depending on the number of messages may come as a null field, a JSONObject (if there is only one message) or ...
0
votes
0answers
23 views
Json Retrieval with few complexity unrevealed
I have parsed many such JSONArrays but can anyone help me how to parse this which has the JSONArray- sequence has this type of structure
This is the JSONfile in my res/raw folder -
[
...
0
votes
1answer
50 views
csv file to JSONArray in android
NOTE: My specific problem is solved (explained at the bottom), but I'll leave my question up if any future visitors would like to contribute/look at this question.
Does anyone have any more efficient ...
0
votes
1answer
65 views
How do I remove a specific element from a JSONArray?
I am building one app in which i request one php file from server. This php file returns me one JSONArray having JSONObjects as its elements e.g.,
this
[
{
"uniqid":"h5Wtd",
...
0
votes
3answers
109 views
OutOfMemoryError Android
My application was running fine about 5 days ago! Today, I try to run it, and its going absolutely nuts!
I'm getting this message in logcat before it finally throws the outofmemoryerror
01-06 ...
0
votes
1answer
50 views
0
votes
1answer
50 views
output jsonArray on php side, and decode on android
I have this php code:
if ($merchant_rows > 0){
while($r=mysql_fetch_array($get_merchant)){
$merchant_id = $r['merchant_id'];
}
$sql = "SELECT quest_id, quest_title, quest_price, ...
0
votes
1answer
64 views
Retrieving JSONArrays from Java (Android)
I'm trying to parse a JSONArray received from php. I see from my log cat that the value I get back is [["84.0918544152744"],["84.0918544152744"]] but when I go to parse the elements from the array, I ...
0
votes
0answers
111 views
how to Populate Spinner with JSON Array with AsyncTask
Good evening to everyone! I have a problem that is kicking my butt here.
I have a JSONArray of Locations.
I want to populate a spinner with the name and id of the location. Here is my code:
public ...
0
votes
0answers
41 views
Need clarification between JSON and java map
I'm developing an app in android.
I have to build an API in PHP which serves the following JSON
[{"id":"1","number":"2"},{"id":"3","number":"4"},{"id":"5","number":"6"},{"id":"7","number":"8"}]
I ...
0
votes
1answer
194 views
How to Parse JSON Array in Android with Gson
I want to parse JSON arrays and using gson. Firstly, I can log JSON output, server is responsing to client clearly.
Here is my JSON output:
[
{
id : '1',
title: 'sample ...
0
votes
1answer
54 views
JSONArray constructor does not function
I'm experiencing some problem loading a JSONArray on the Android. I've constructed the JSON string with Gson and I've checked this online to see whether it is valid. It validates on various online ...
0
votes
2answers
82 views
Converting arraylist of custom class to JSONArray
I didn't expect this is that complex. But I can't figure out how I can convert my arraylist of custom class to a JSONArray. I understand there is no direct method to do that. So I made arraylist of ...
0
votes
0answers
38 views
How to add two JSONArrays together
I'm trying to add two JSONArray objects together.
JSONArray items_one;
JSONArray items_two;
JSONArray items_three;
JSONArray items_four;
items_one = ...
0
votes
1answer
265 views
Android: Sort JSONArray by object attribute
I'm trying to create a list of "events" for an agenda.
To do this, I recieve a JSON response which contains several month objects, which in turn contain an array of event-objects.
When I receive my ...
0
votes
3answers
75 views
How to Create JSON Array in java
I have a JSON structure as given below, How to create this JSON Array structure programatically:
json srtucture
{
"Employee":
[
{
"EmP325235":
{
"Name":"Rekha_S",
...
0
votes
1answer
156 views
How to create Bullet Charts of JSONArrays in JavaScript?
Help! How to change Bullet Charts JavaScript code from these web-page:
http://mbostock.github.com/d3/ex/bullet.html
in such a way, that the data for visualization would be taken not from ...
0
votes
0answers
41 views
passing a JSONArray in java and retrieve the data/values
i have a sample array in my js file that should be passed on to DWR but I couldn't get the keys and values of the all the data in each object.
var sample = [
{ "first" : "carl",
"last" : "dee", ...
0
votes
3answers
215 views
passing jsonarray from 1 activity to another
I am making an app in which I want o pass a json array between 2 activities .how to pass json arry from one activity to another through intents in android. can anybody help me over this??
thanks
0
votes
2answers
247 views
Geting json response from Google places API in android
My simple android application uses google places api to get the latitude and longitude of a place. I am getting the json response from the google api as below
{
"results" : [
{
...
0
votes
2answers
378 views
Passing JSONArray to PHP from Android
I have read through many other questions regarding PHP and JSONArray looping. I am sending in a JSONArray of values of different students with their class and studentId from my Android device. Using ...
0
votes
1answer
176 views
I want to add jsonobject in jsonArray and that jsonAraay included in other jsoObject
I need below kind of structure constructed in java and send it as response :
var abc = {"action":"Remove",
"datatable":[
{"userid":"userid0","username":"name0"},
...
0
votes
2answers
65 views
JSONException: Value — array hasn't got a label
I have a JSON string that I use for my iOS app and it works fine, however it doesn't have a key on the array. I don't know how to call JSONArray in this case, can anybody make a suggestion besides ...
0
votes
1answer
244 views
Problems with json.GetJSONArray(“?”) in Android
I am trying to get my code work. I want to make a mysql connection
and send the data with json to my android app.
I guess it almost works but my logcat gives me this warning almost at the end:
"error ...
0
votes
2answers
106 views
How can I turn a JSONArray into a JSONObject?
Basically I have:
JSONArray j = new JSONArray();
j.add(new JSONObject()); //JSONObject has a bunch of data in it
j.add(new JSONArray()); //JSONArray has a bunch of data in it
And now I would like ...
0
votes
0answers
329 views
Why is this JSONObject not a JSONArray?
i am the following codes in javascript
var people = {
"users" : [{id : this.getJID().toString()},{id : this.getJID().toString()}],
"body" : messageBody
}
on my server end, I have the ...
0
votes
2answers
94 views
JSON Array Parsing and Conversion to Java Types
I'm fairly new to programming, and I'm an intern working to develop a Blackberry App. So, I apologize in advance if I use any wrong terminology.
I make a HTTP Request for all of the friends of a ...
0
votes
2answers
217 views
How can I parse this JSON and not get an exception?
I have the following JSON:
[
{
"outcome": "Success",
"message": "",
"identity": "",
"delay": "0",
"symbol": "AAPL",
"companyname": "Apple Inc.",
"date": "Jun 08",
...
0
votes
2answers
286 views
Reading Dynamic JSON Array
I trying to build a JavaScript function which will grab a JSON encoded array and return a value based on the requested key. I use the jQuery $.parseJSON() method to take the JSON string and convert it ...
0
votes
1answer
875 views
Is there any easy way to sort a JSONArray of objects by an attribute in Android?
Is there any easy way to sort a JSONArray of objects by an attribute in Android?
0
votes
3answers
4k views
How do I create a JSON Array?
Hi I want to create a JSON array.
I have tried using:
JSONArray jArray = new JSONArray();
while(itr.hasNext()){
int objId = itr.next();
jArray.put(objId, odao.getObjectName(objId));
}
...
-1
votes
2answers
175 views
How to get values of nested array of http response by JSON
I am currently working on JSON on android platform. Can anyone tell me how to read complex JSON, any help is appreciated.
I am getting following JSON response
{
"query": {
"count":1,
...