Is it possible to send an object using Sockets, if so, how
it can be?
Answer Posted / afzi
Yes it is Poosible to send an Object using Sockets,
for example refer to below given code snippet.
ObjectOutputStream out = new ObjectOutputStream
(socket.getOutputStream());
out.flush();
ObjectInputStream in = new ObjectInputStream
(socket.getInputStream());
type=(String)in.readObject();
out.writeObject("ok");
in.close();
out.close();
socket.close();
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What you know about random port?
What is a thread pool?
What is HttpURL connection ?
What is an http server?
How we can make simple java program for Server/Client Communication
What is the use of network interface?
What is socket in java?
Explain look for local ports?
What is network interface name?
What are the advantages and disadvantages of sockets?
What are the advantages and disadvantages of java sockets.
To create a socket, you need to know the internet host to which you want to connect?
What is the main difference between Client side Java Script and and Server side Java Script how actually they run on both side with Example.
What is a listener in networking?
What is cookies in networking ?