I have a class URLReader:
public class URLReader {
private URL _url;
@SuppressLint({ "NewApi", "NewApi", "NewApi" })
public URLReader(String url) throws MalformedURLException {
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
_url = new URL(url);
}
public String parseURL() throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(
_url.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
inputLine += inputLine;
in.close();
return inputLine;
}
}
I just put in the StrictMode because of NetworkOnMainThreadException, it has since went away but I'm not sure this is accurate and if more problems are just persisting now. I am currently getting a nullpointer in main exception. But this class is all I'm worried about at the moment. I was confused on how to implement AysncTask into this because I'm sure that's what i should be doing. If anyone knows how to make a simple URLReader class in Android it would be very helpful if you could show me were I'm going wrong. I am new to the android scene thank you.