Tagged Questions
1
vote
2answers
36 views
Getting values from dynamic listview
So im getting values via json
JSONObject json = new JSONObject(result);
if(json.has("message"))
{
message = json.getString("message");
}
else
{
for (int i ...
0
votes
0answers
32 views
parse JSON to update listview in Android
I want to parse JSON in android I can parse one response while I am unable to parse the other one.
1) I am able to parse the following Web Service Response
[
{
"id": "763",
"title": ".46 ...
0
votes
0answers
32 views
how use .json in repo to read the update in android app
{ "MirrorList": ["https://www.mediafire.com/?dl_name=https://www.mediafire.com/download/lf4p87nwzonafof/"],
"UpdateList": [
{
"mod": "GT-S5360",
"board": "smdk4210",
...
0
votes
2answers
57 views
How to use post method in android using json
I have created an android apps using json for getting from ror website and displaying in listview,Right now i want to add the data from our apps,it has to display in listview in our apps also and then ...
0
votes
2answers
34 views
show date from json without all the title
i have a probleme , i try to show date from a webservice , and it show all the date ,
for example "23 mai 2013 11:05:01 GMT"
and i want to show for example just like this "today at 9h30" ,
this is ...
-2
votes
3answers
35 views
How to parse JSON responce in JSON object and JSON Array in Android
i am getting response form webservice in JSON object and this JSON object contains further another JSON Object and JSON Array inside it i am not getting how to parse this:- my code is this
{
...
0
votes
0answers
23 views
how to fetch raw() function enabled content using json in ruby on rails
I have one rails application where I have one model posts. Post model having two attributes - "title" & "content". I am using ckeditor for my content. Here is my ckditor snapshot
When I save ...
0
votes
2answers
48 views
Get Text from Json and add it to String[]
I want to fetch a text (some urls) from Json and add them straightly to a String[] in android. The text is like
...
0
votes
4answers
44 views
JSONParser Android, place on String [closed]
H Guys I am having some issues getting JSON Parser to work, I want to parse a JSON file with the object "name".
I want to parse this file from a site, let's say the file it's in ...
0
votes
1answer
39 views
On scroll add more json data in listView
I made one ListView with image and text. I am able to parse json data in the ListView. But my requirenment is to load 10 rows of Json data, then at the bottom have a load more. to get the next 10, ...
0
votes
1answer
27 views
android webview working with json post and response
I have a sample url like this:
http://www.sample.com/mobile.cgi?action=login&json_request={"user":{"name":"a","pass":"123","gender":"m","age":"25"}}
I can basically use webview.loadurl to send ...
0
votes
1answer
34 views
How do I respond to user if I have no internet connection?
I am trying to write the code that would read a JSONArray but there is a possibility that the internet server is down and the device is not able to connect or then there is no internet connection on ...
0
votes
0answers
17 views
DownloadManager error 416 not found in Android while download file
i have a problem. I want to download file from web server database MySQL. I use JSON to parse url of the file. But when i try to download, it always return 416.
What's the problem? My code or how i ...
0
votes
1answer
23 views
Gson library, cast JsonObject to MyObject
Im currently using this code to create Objects out of JsonStrings from my Server:
JsonParser parser = new JsonParser();
JsonObject myJsonObject = (JsonObject) parser.parse(myInputStreamReader);
...
1
vote
2answers
39 views
Parsing with Gson giving null in nested array list
Here is the json which I want to parse
{
"success": true,
"status": 200,
"events": [
{
"event": {
"artist_id": 54,
"created_at": "2013-04-05T08:52:40Z",
...
0
votes
2answers
30 views
Android Listview display multiple items per screen
I've created a simple app that sends a search term to a php script, reads the json response generated by that php script based on the search term, processes the json response and loads the json nodes ...
0
votes
0answers
9 views
link to videoview android
i have a probleme that when i want to chose an article from a listview the article should be on video , and when i click to this link it give me a web page , and i want that video turn on on video ...
-2
votes
0answers
23 views
JSON format in JSP [closed]
i would like to parse JSON format in my Android device. The JSON format is:
My problem was, that the Android device shows Unfortunately, the application stopped. If i parse only the json format (not ...
0
votes
6answers
66 views
fetching json contents in android
JSONObject json = new JSONObject(ress);
JSONArray array = json.getJSONArray("data");
JSONObject o = array.getJSONObject(0);
Log.d("names","names"+ ...
1
vote
1answer
34 views
Post JsonArray and string parameters using HttpPost in android
I tried lots of ways to send data using HttpPost but I haven't succeeded, if anybody knows about this please help?
My service url is :
http://xxxxx/xxx/abc.php?id=xx&name=xxx&data=[{.....}]
...
2
votes
3answers
84 views
PHP Inserting JSON Data into MySQL database from Android
I have an Android app that sends data via HTTP POST method to a PHP script and am trying to parse the data to store into a MySQL. The Android app was not written by me but I have access to the source ...
0
votes
2answers
20 views
Model class for Jackson Parser to parse Uppercase properties
I have a json file which looks like this:
{
"ANIMALS": {
"TYPE": "MAMMAL",
"COLOR": "BLACK",
"HEIGHT": "45",
}
}
But I get property not found error. If I change it to ...
0
votes
2answers
30 views
How to add an id to an arraylist
I have a simple structure of the app, that just downloads some mysql data and displays it to a list view. The code snippet shows what I'm doing.
public class MyActivity extends Activity implements ...
0
votes
1answer
15 views
Format to store in db4o in an android app
I'm working on an android project for a local community 'festival' and the android app should sync with an online database everytime it starts up, and then store the data on android in db4o.
Right now ...
0
votes
1answer
31 views
How to insert one more item in a json existing structure with gson?
The code below generates correctly the first structure of the json file.
gson = new GsonBuilder().setPrettyPrinting().create();
AudDetHeader AudDetHeader = new AudDetHeader();
...
1
vote
3answers
48 views
JSON to ListView in Android with Gson
I'm trying to put a json result in a ListView in my Android app.
This is my Json:
[
{
"Result": "8:30,21",
"Meeting": "Antwerp Olympics",
"Event": "3000m",
...
1
vote
1answer
60 views
Jersey serialize empty list and single element list as an array
Since there is a probelm with serialization an emplty list and single element list in Jersey. I tried to fix it by adding JAXBContextResolver class. The goal is to return JSON object thant contains ...
0
votes
1answer
57 views
Android using JSON to register and get results from web service - PHP
I made an android application last year, it worked fine, i've been reassigned to develop the application.
But the registration of a user has stopped working. The reason why, I havnt a clue.
Here is ...
-5
votes
1answer
27 views
How to parse this type of JSON File in android? [closed]
{
"ResponseCode": "000",
"ResponseDescription": "Successfull",
"SystemServiceID": [
"1",
"1",
"2",
"2",
"2",
"2",
"2",
"2",
"2",
"2",
"2",
"2",
...
2
votes
0answers
63 views
JsonReader Exception in Android while parsing large josn data
I am getting an exception when using the JsonReader class in android while parsing a large json data.
Exception:
java.lang.IllegalStateException: Expected a name but was STRING
The json data is ...
0
votes
1answer
41 views
Replace first and last occurrences of a json string
I am fetching the response from webservice and trying to parse the json string.
The response string is,
...
0
votes
1answer
68 views
Deserialize JSON to Java Map<Integer,Object> with jackson
I am working on some application, which deserialize JSON.
I am building the JSON myself with other software.
I need to deserialize a Map of Objects.
This part is already working.
The problem is that ...
0
votes
1answer
19 views
How to set CheckBox or Radio button at same place in layout screen?
Fisrt i have a json data
[{"Test_ID":"6","Question_Text":"What is the length of the train?","Answer_Set_id":"1","Correct_Answer":"4","Correct_Answer_Text":null,Answer_choice_1":"45 ...
2
votes
2answers
45 views
Org.json.JSONException: Unterminated string at character 1834 [closed]
I am fetching the data from webservice, which I am parsing to JSON string.
While parsing I am this exception: "org.json.JSONException: Unterminated string at character 1834"
my code is,
String ...
0
votes
1answer
23 views
org.json.JSONException: Value <?xml of type java.lang.String cannot be converted to JSONObject
I have a method from which I am fetching the data from webservice using http post in android.
my code is,
public class PropertyRequestService {
static String result;
PropertiesList localProperty = ...
0
votes
1answer
26 views
put method replacing the previous object of the jsonarray
I was trying to form this type of jsonarray.
[
{
"userIdentity":"bbb",
"admin":true/false
},
{
"userIdentity":"bbb",
...
0
votes
3answers
48 views
How to edit an item in a json file?
I have this structure that is generated by my application and I read in a listView:
[{
"phone": "202020",
"name": "Jhon",
"id": 10,
"age": 20
},
{
"phone": "303030",
"name": "Rose",
...
0
votes
2answers
32 views
get json object without array name in android 2
I've json like this
array (
'status' => 'OK',
'categories' =>
array (
'Sepeda' =>
array (
83 => 'Sepeda MTB',
'Fullbike' =>
array (
370 => ...
0
votes
4answers
42 views
JSON Parsing- fetch value
I am having trouble parsing this JSON. I have the following data in a JSONObject o. How do i fetch the value for critics_score ?
{
"total":1,"
movies":
[{
"id":"770672122",
...
1
vote
0answers
43 views
org.codehaus.jackson.JsonParseException: Unexpected character ('' (code 65279 / 0xfeff)): expected a valid value
I'm facing an Strange problem, I'm very new to Android and Json. I'm consuming a RESTful WCF that shows a json response like this one:
...
1
vote
2answers
64 views
GSON Expected BEGIN_ARRAY but was BEGIN_OBJECT
I'm getting this error when I receive only one single item in a list. I'm using Jersey in the server side REST Web service, I only get the error when the List returned one single element and when it ...
0
votes
0answers
16 views
Finding the json file used by app inventor
I believe this might be a very specific question, and this might not be one of the best places to ask. I am trying to create an android app emulating the function of app inventor. I have just begun ...
-4
votes
1answer
51 views
android: how to read json data
can you please help me out how to read this data.
i received JSON data in a string. But not able to parse it.
Please Help.
This is my json:
{
"951":{
"title":{
"en":"Vida Crew",
...
0
votes
1answer
32 views
How to send data from an Android app to a Rails server? JSON or Alternatives? [closed]
When an Android client has to make a POST request to a server, I can send the data as URL parameters in the URL.
But the URL can become very big. So, I want to send the data in JSON format. Is doing ...
0
votes
0answers
21 views
How to Store the JsonData into the Array Wheel Adepter
Hi Guys I am new in android and i want to know how to sort the data which is come from Json String.
Here Is the Code of Getting the Key and Value of the Json and Stored it in Wheel Adapter.It ...
1
vote
0answers
74 views
Error parsing data org.json.JSONException: End of input at character 0 of when I run on real device
I have created an Android application but when I run it on my real device it crashes and I get this in my logcat:
05-20 17:32:50.251: E/SensorManager(20804): thread start
05-20 17:32:50.376: ...
0
votes
2answers
61 views
Get json object without param name in android
I have a json response like this:
array (
'status' => 'OK',
'categories' =>
array (
'Sepeda' =>
array (
83 => 'Sepeda MTB',
'Fullbike' =>
array (
...
-2
votes
0answers
17 views
Converting xml-rpc output to JSON [closed]
I am developing Android application using xml-rpc. I need the way of converting the response values from xml-rpc to JSON format.
I am getting the below output from my call.
...
0
votes
1answer
39 views
Error parsing data org.json.JSONException
I'm working with PHP, JSON, and Android to create mobile app that can retrieve data from MySQL database. I'm able to get all data from database but, when I try to get a specific data based on the user ...
1
vote
1answer
30 views
Anonymous Uploading File object to Imgur API (JSON) gives Authentication Error 401
I've created a class UploadToImgurTask as an AsyncTask that takes a single file path parameter, creates and sets an MultiPartEntity, and then uses Apache HttpClient to upload the image with said ...







