java rmi passing ImageIcon objects
问题 I m making an rmi client server based program which is suppose to pass Image object through remote object interfaces . The Client receives an Image from the Server . Following is my code.... At Client public class ImageReceiver { public static ImageIcon imageicon; public static void main(String Data[]) { imageicon = new ImageIcon(url); imageicon=remoteObject.getImageFromServer(); } } // The Details regarding the binding of remote objects are excluded since they are worling fine... sendImage