The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
42 views

How to Android XHTML parsing

i have a plan to android web parsing after make autologin service... but i have a problem... i try parsing to that http://communion.gntc.net/ i see that www.w3.org/xhtml... xhtml... how to make ...
0
votes
1answer
28 views

Issue on Parsing image url from image tag

I have written the code for parsing image url from <image> tag. The code is below: NodeList imageLink = docElement.getElementsByTagName("image"); String nUrl; if ...
0
votes
2answers
34 views

GET Method Parsing

Can someone help me better understand this code better. // request method is GET DefaultHttpClient httpClient = new DefaultHttpClient(); String paramString = URLEncodedUtils.format(params, "utf-8"); ...
1
vote
1answer
69 views

Listview doenst show all item from json

I'm filling a lazy loaded listview with items from a Json and it only shows the first item, without the image, not showing the rest of the items. I'm using AsyncTask to load my items to my listview. ...
0
votes
2answers
50 views

Can someone help me in writing Json?

I m just parsing the datas from server which is in Json format. I got stucked. I don't know how to proceed further. JSONObject object1 = new JSONObject(str); String s1 = ...
0
votes
3answers
98 views

Android: Best parser to parse XML data

I am developing an application in which the first time I am going to parse data from an xml file coming from a remote server. But i am not able to select which parser is efficient or best suited for ...
1
vote
1answer
70 views

Parsing xml android gives a null pointer exception

I am parsing the following XML: <?xml version="1.0"?> <Root> <ResponseCode>1</ResponseCode> <ResponseMessage>Login Successfull</ResponseMessage> ...
1
vote
2answers
325 views

Android: Get data from server

I want to develop an application. In which user enter a URL at run time. The XML is placed on server. So how to hit or get the data of that XML, so that i can parse the data and use that. The parsing ...
1
vote
2answers
112 views

XML Parser DOM Caused by: java.lang.NullPointerException

I am writing a program in which i am using XMLParser to parse data in DOM Element, but whenever i run my program getting : Unfortunately App has Stopped Logcat says: 03-18 10:41:11.266: ...
3
votes
2answers
1k views

Getting error of parsing the package during updating my new version of apk

Android Experts, I have installed signed apk (version 1.6) and on my server I've uploaded apk( version 1.7). Now I am facing problem during Update my apk from server.. I also got Dialog box for ...
1
vote
1answer
110 views

How to use WSDL2Code generated files?

I am working towards an android application. I need to use a web service. I have a .NET web service. I generated Java files from WSDL2Code converter, but I don't know how can I use service with these ...
0
votes
0answers
48 views

Failure to Retrieve Value While Parsing XML File

I can't seem to figure out why I can't pull the temperature out of this XML Document. When I use .getNodeName it says that it is at the temp_F node, but I cannot get it to pull the value. Any help is ...
0
votes
1answer
159 views

Error While Parsing XML file Using Xml DOMParser : Android

I am having XML file. Structure of the XML file is HERE : <albumlist> <album value="Enrique Iglesias"><details value="1995"/> <imageid value="eenrique"/> ...
0
votes
2answers
227 views

Consume .NET WebService - Parsing an array of data from an asmx WebService in Android

I have a .NET Web-services with asmx extension. The service http://www.web.com/SampleService/SampleService.asmx has two endpoints: First is http://www.web.com/SampleService/SampleService.asmx/GetName ...
0
votes
0answers
76 views

Android parse XML from SDcard about special tags

i have a little problem by parsing an xml file, which is on the sdcard of my smartphone. the xml-structure look like : .... <nd ref="1364745028"/> <nd ref="1364745137"/> <nd ...
0
votes
0answers
80 views

BadXmlException: Root element name does not match on some devices

I'm using SAX parser to parse XML recieved from internet. Strange thing about this is, that on some devices and only sometimes it throws this exception: (18118): android.sax.BadXmlException: Line 1: ...
0
votes
0answers
146 views

While parsing Json using JsonReader I am getting SSLProtocolException

I am trying to parse a json response with JsonReader so that I can directly use Inputstream to parse it. But I am getting a exception. Logcat: 02-04 18:30:54.515: W/System.err(1695): ...
0
votes
1answer
238 views

JsonArray Or JsonObject is null while parsing with JsonReader

I am trying to parse a json using JsonReader. While parsing I came accross 2 scenarios where my app crashes. 1). When JsonArray contains sets of another JsonArrays and and out of which one of it is ...
0
votes
1answer
600 views

Parsing json directly using input stream

I am doing a api call and in response i am getting json. So for that I want to parse it directly through input stream so that there would not be need of storing it in memory. For this I am trying to ...
0
votes
0answers
54 views

Robolectric: SAXParser in Android vs SAXParser in Java (robolectric) : difference in localname vs qname

I used to run my unit tests using Android Unit Test but switched to Java Unit Test using Robolectric. I noticed a difference in using the SaxParser DefaultHandler. Basically, the Android sax parser ...
0
votes
2answers
72 views

Not able to get NodeList from asynch task

The objective of below snippet is used for parsing the xml. In that AsynchTask is used for internet connection, However I am getting NullPointerException on the line before the for loop.. here is a ...
1
vote
2answers
128 views

Parsing the Xml file which dont have any child nodes

I am new in android development, I want to parse one particular xml file using Dom Parser. The xml structure is something like this. <Images> <image ...
0
votes
1answer
78 views

android: I fetch node with attribute how can i get its child nodes

The xml is available at http://thecybersoft.us/BridalExpo/Getmember.xml XPathFactory xpathfactory = XPathFactory.newInstance(); XPath xpath = xpathfactory.newXPath(); try { ...
0
votes
1answer
127 views

How to show Remote Server data into MapView

I am making an app in which i am fetching locations using JSON into Map,still i am getting map but without JSON Data to show multiple locations, my code is ok and it works fine, i just want to know by ...
-3
votes
1answer
7k views

Caused by: android.os.NetworkOnMainThreadException [duplicate]

Hi all Viewers and readers, I am using link. Whenever I run this code in separate package it works fine, but whenever I am trying to embed this sample in my app, getting Unfortunately app has stopped, ...
0
votes
1answer
111 views

Getting map but without json data

Not Getting JSON data into mapview to show locations, but getting blank map, I am making a program in which I am trying to fetch json data into mapview, but whenever I run my app getting map without ...
0
votes
3answers
270 views

Caused by: java.lang.NullPointerException, Unfortunately app has stopped

Fetching JSON data into mapview, still I am getting map, but without Map Locations, which I have given in JSON File, and whenever I run my app getting this-Unfortunately app has stopped and Logcat ...
-1
votes
1answer
202 views

I am doing everything in background using doInBackground() where to use onPostExecute()

I am trying to show JSON data into Mapview, but always getting blank map. I knew that to populate I need to use onPostExecute() in my activity but I am confuse where I need to put onPostExecute() ...
1
vote
1answer
169 views

parse xml data into google map android

i am making a program in which i have to parse xml data into google map, i know how to use xml parser and bit knowledge of google mapping, here i need to fetch longitude, latitude, name and address ...
1
vote
3answers
194 views

XML Parser in android

I need to know what is the best way to parsing XML file in android, I know there is 3 parser (XMLPullParser, Dom Parser and Sax parser) so whats the different between it and if there any code to do ...
0
votes
0answers
84 views

How to use Async task for Pagination

public class AndroidXMLParsingActivity extends Activity { public int currentPage = 1; public ListView lisView1; static final String KEY_ITEM = "docdetails"; static final String ...
0
votes
1answer
224 views

XML Parser returning null as the first line

I am reading from an XML file using XML Parser. XML Parser is reading the first line as null and then returns other data from the xml file so created. Following is the XML Parsing Code: ...
0
votes
1answer
332 views

Android- XML parser not returning full value from XML

The problem is, when i try to get value from xml below <item> <title>The Return of Toastmasters</title> ...
1
vote
1answer
337 views

Android : Error in parsing JSON array using GSON library [duplicate]

Possible Duplicate: GSON throwing “Expected BEGIN_OBJECT but was BEGIN_ARRAY”? Scenario : I am parsing an API which is is JSON format using GSON library. Here the JSON file I am ...
0
votes
1answer
803 views

Android SDK: Xml Pull Parser - How to get the node name

I am using the Xml Pull Parser to parse some Xml from a URL. I'm retrieving the values of the nodes without any problem, however I can't seem to get the node name - it's just returning null. For ...
1
vote
4answers
967 views

Parse an RSS feed for Android app ? Is jsoup the answer?

I am reading the Head First Android development book. In the third chapter where they try to make an app from NASA RSS feed from here . In the book the author uses SAX parser for Java. I looked online ...
0
votes
0answers
332 views

Apostrophe ( ' ) issue in SAX Parsing displaying strange square ( ⛦ ) character on TextView

I'm working on an app which is in the multilanguage. I'm getting the data in XML form. I used SAX parser for parsing xml files and display the data in the TextView. Everything is working fine even the ...
0
votes
2answers
500 views

SAX Parser encoding issue in German Language

I'm working on an app which is in the German language. I'm getting the data in XML form. I used SAX parser for parsing these XMLs and display the data in the TextView. Everything is working fine ...
0
votes
1answer
301 views

Get the data from XML file in drawable-folder using sax parsing?

I have an XML file in the drawable-folder. I want parse the XML-file using XML-parsing(sax parsing). I used following code for that: private void getDataFromFile(int mntFile) throws SAXException, ...
0
votes
3answers
759 views

Fetching data from description node issue in Android RSS reader

I have been developing an Android RSS Reader Application and have had a problem with fetching HTML content from description node. I tried to fetch the data from following XML. ...
1
vote
1answer
197 views

xml data parsing using dom in android

how to parse this type of data using DOM? here some text is in CDATA and some text in normal. <error><![CDATA[This Mobile number already registered]]> with a different ICNO ( Hotline ...
0
votes
0answers
145 views

json parsing with listview in android?

Categorylist = new ArrayList<CategoryModel>(); try { JSONArray jsonArray = new JSONArray(category()); Log.i(CategoryActivity.class.getName(), "Number of entries " ...
0
votes
2answers
356 views

Android SAX parsing retrieval very slow

In my app i have some 50 to 100 data to be parsed...also some images within 2 MB size...All these are to be retrieved to a single activity and are sorted and displayed there... But its taking about 2 ...
-1
votes
1answer
84 views

Android XML Parsing link error

I have an xml file generated dynamically through a php code section.I need this xml file to be read inside my android application.Can anybody suggest a method for the same? The xml file just looks ...
0
votes
1answer
103 views

Parsing an HTML document from the server

I have an HTML on my server. When I try to parse this document with a DOM or PullParser, the parsing is very slow because I am parsing the HTML style too, mot only the data. Do you know if there is ...
0
votes
2answers
121 views

Show an String XML data on a view without parsing

I have a String like this: <p><span class="qlst"> <span class="caption">QuickLinks</span> <ul> <li><a ...
0
votes
1answer
275 views

Android DOM parsing is tooo slow

I am trying to parse an web response with DOM parser like this: public static Document parseDocument(InputStream sr) throws Exception { DocumentBuilderFactory dbf = ...
1
vote
3answers
853 views

how to parse local xml file in android using dom and saxparser?

how to parse local xml file in android using dom and sax?
0
votes
1answer
246 views

How to shows data after XML Parsing if the file contains CADATA in XML file?

I'm new to Android Development, I have to parse my XML files through Http request, i'm using this example for parsing http://www.androidhive.info/2011/11/android-xml-parsing-tutorial/ which works ...
1
vote
2answers
308 views

Parsing large text file efficiency

Due to simplicity i have a text file with entries separated by ; and parses every line into an object. The problem is that the text file contains almost 10 000 rows. I also need to create keys for ...

1 2