I'm writing an app in java that sends an object down a socket. At the other end of the connection I have another app that needs to receive the object and display the contents.......
I got my app to receive text by using a scanner.
in = new Scanner(socket.getInputStream());
while (in.hasNext()
{
system.out.println(in.next)
}
However when I try to use the same method to send an object the code is incompilable. printNumber() is a meathod within the object im trying to send.
in = new Scanner(socket.getInputStream());
while (in.hasNext()
{
system.out.println(in.printNumber())
}
I have tried looking through the internet to find a tutorial or something to explain what I'm supposed to be doing but I don't actually know what I'm actually looking for. Can anyone point me in the right direction?
Cheers
