I\'m attempting to follow a tutorial regarding posting HTTP data however its force closing on the main thread due to network activity on the IO thread so I\'ve attempted to impl
NetworkOnMainThreadException
You are getting exception because you are doing network operation on main thread which is not allow android version >= 3.0.
Use AsyncTask to do network operation.
Do your network operation in doInBackground() method.
doInBackground()
Read android docs for AsyncTask.