Wednesday 19 October 2016

android - bufferedReader for URL throws IOException

I got my code to connect to my computers php file and output the correct text in a java program. When I tried to add it to my android project inorder to display high scores It always throws an IOException and I can't figure out why. Here is my code. Any help would be appreciated.





package com.enophz.spacetrash;


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class Scores extends Activity {

//private TextView HscoreText;

/** Called when the activity is first created. */
public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);
setContentView(R.layout.scores);

Button next = (Button) findViewById(R.id.Button01);
next.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(view.getContext(), Menu.class);
startActivity(myIntent);
}


});

TextView HscoreText = (TextView) findViewById(R.id.text);

try
{
URL page = new URL("http://192.168.1.108/score.php");
URLConnection pageconnection = page.openConnection();
BufferedReader in = new BufferedReader(
new InputStreamReader(

pageconnection.getInputStream()));

in.close();


HscoreText.setText("It Worked!");
}
catch(MalformedURLException e)
{
HscoreText.setText("MalformedURL");

}
catch (IOException e)
{
HscoreText.setText("IOException");
}

}

}

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...