My application is getting a failed binder transaction, which causes it
to completely hang,  when I do the following:

Process process = Runtime.getRuntime().exec(SOME COMMAND);
BufferedReader br = new BufferedReader(new InputStreamReader
(process.getInputStream());
While(read the content using br.readLine())

I am guessing the content retrieved by the runtime.exec is too big?
Does anyone know how I can limit the content to not hit a failed
binder transaction?  I have tried limiting the bytes returned in
BufferedReader but that didn't help.

Please help me.

Thanks.


--~--~---------~--~----~------------~-------~--~----~
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