SO I just tried to read text from a socket, and I did the following:
import java.io.*;
import java.net.*;
public class apples{
public static void main(String args[]) throws IOException{
Socket client = null;
PrintWriter output = null;
BufferedReader in = null;
try {
client = new Socket("127.0.0.1", 2235);
output = new PrintWriter(client.getOutputStream(), false);
in = new BufferedReader(new InputStreamReader(client.getInputStream()));
while (true) {
System.out.println("Line: " + client.getOutputStream());
}
}
catch (IOException e) {
System.out.println(e);
}
output.close();
in.close();
client.close();
}
}
This prints out weird numbers and stuff like:
java.net.SocketOutputStream@316f673e
I'm not really sure of all the Java functions and things, so how would I make the output print out as text?