Maddy wrote: > To give more information, I had put break point at > > InputStream istream = yahooClient.retInputStream(); > > in the code snippet I had put before in this conversation. > > When the control hits this break point, I pressed F5 (I am using > Eclipse IDE) to go into the function, > but instead of going into the function, it straight aways throws > NullPointerException. > > may be the above information too helps you in helping me.
When I asked "What is the exception?" in my previous reply, I meant "What is the exception?". I am assuming, from your above message, that the exception is a NullPointerException. If you are getting a NullPointerException on the above line, yahooClient is presumably null. You did not provide any source code indicating you are ever creating a YahooClient object (e.g., new YahooClient()). -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Published! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Discuss" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-discuss?hl=en -~----------~----~----~----~------~----~------~--~---
