Hello Bhaumik Thaker,

You need execute the code in a thread.

For example use asynctask and update the UI thread if required.
You may need to use Handler on main thread to execute async task so that it 
works in 4.x version and lower versions.

regards


On Wednesday, May 16, 2012 3:54:29 PM UTC+5:30, Bhaumik Thaker wrote:
>
>
> Hello All,
>
>          i have a problem i have parse the data using DOM parser in 
> android 2.2 but it will not work in higher version of 2.2.
> I have use the khop to fetch the response from webservice...
>
> It will write the code as follows... 
>
>          DocumentBuilderFactory factory = 
> DocumentBuilderFactory.newInstance();
>         //factory.setCoalescing(true);
>         try{
>             //InputStream is = new 
> ByteArrayInputStream(sb.toString().getBytes()); //sb.toString() is the Data 
> which is comes from the webserver as a response
>             InputSource instream = new InputSource();
>             instream.setEncoding("UTF-8");
>             String strnm = sb.toString();
>             //instream.setByteStream(new 
> ByteArrayInputStream("<table><uid>250</uid></table>"));
>             instream.setCharacterStream(new StringReader(strnm));
>             DocumentBuilder db = factory.newDocumentBuilder();
>             Document doc = db.parse(instream);
>        }
>
> it will throws an error at following.....
>
> Document doc = db.parse(instream);
>
> This will work fine in android 2.2 but not in 2.3 or higher version...
>
>
>
> Help me to solve this issue...
>
> Thanks,
> -- 
> Bhaumik Thaker
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to