Reading Png File From The Stream
I trying to build RDP application for android mobile.so in server side i am sending the png images with the robot class, but in client side i am not able to read that messages and
Solution 1:
Try this
BufferedInputStream in = new BufferedInputStream(sock.getInputStream());
BufferedImage image = ImageIO.read(in);
Post a Comment for "Reading Png File From The Stream"