当前位置:  技术问答>java相关

谁能给我一个RMI的程序?

    来源: 互联网  发布时间:2015-08-16

    本文导语:  谁能给我一个RMI的程序?简单点的 | import java.rmi.Remote; import java.rmi.RemoteException; public interface RemoteInterface extends Remote{ String message(String message)throws RemoteException; } 客户 import java.rmi.RMISecur...

谁能给我一个RMI的程序?简单点的

|
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface RemoteInterface extends Remote{
String message(String message)throws RemoteException;
}
客户
import java.rmi.RMISecurityManager;
import java.rmi.Naming;
public class RemoteClient
{
public static void main(String args[]){
System.setSecurityManager(new RMISecurityManager());
try{
RemoteInterface server = (RemoteInterface)Naming.lookup("servertext");
String serverString = server.message("hello");
}
catch(Exception e){
System.out.println("e");
}
}
}
服务器
import java.rmi.Naming;
import java.rmi.server.UnicastRemoteObject;
import java.rmi.RemoteException;
import java.rmi.RMISecurityManager;
public class RemoteObject extends UnicastRemoteObject implements RemoteInterface{
String name;
public RemoteObject(String  name) throws RemoteException{
super();
this.name=name;
}
public String message(String message) throws RemoteException{
String returnString = name+message;
System.out.println(returnString);
return returnString;
}
public static void main(String args[]){
try{
String myName = "servertext";
RemoteObject theserver = new RemoteObject(myName);
Naming.rebind(myName,theserver);
System.out.println("ksdkfksd");
}
catch(Exception e){
System.out.println(e);
}
}
}

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间javax.management.remote.rmi类rmiconnectorserver的类成员方法: rmi_client_socket_factory_attribute定义及介绍
  • Eclipse的RMI开发插件 RMI Plugin for Eclipse
  • java命名空间javax.management.remote.rmi类rmiconnectorserver的类成员方法: rmi_server_socket_factory_attribute定义及介绍
  • RMI初级问题!!!怎样让不同的主机之间用RMI????
  • java命名空间javax.rmi.corba接口utildelegate的类成员方法: registertarget定义及介绍
  • 请教:rmi中的server为什么不能注册?
  • java命名空间java.rmi.server类rmisocketfactory的类成员方法: getdefaultsocketfactory定义及介绍
  • 请教RMI基础知识,谢谢!
  • java命名空间javax.management.remote.rmi类rmiserverimpl的类成员方法: getprotocol定义及介绍
  • 菜鸟问题;请问哪里要用rmi/corba?
  • java命名空间javax.rmi.corba接口portableremoteobjectdelegate的类成员方法: connect定义及介绍
  • RMI via JMS
  • java命名空间javax.rmi.corba接口tie的类成员方法: settarget定义及介绍
  • 请问关于WebLogic RMI的问题
  • java命名空间javax.management.remote.rmi类rmiiiopserverimpl的类成员方法: getprotocol定义及介绍
  • 急!怎样才能获得javax.rmi包?
  • java命名空间javax.management.remote.rmi类rmijrmpserverimpl的类成员方法: getprotocol定义及介绍
  • 有谁在Unix上用过RMI么?rmiregistry启动后如何停下来?
  • java命名空间javax.rmi.corba接口utildelegate的类成员方法: gettie定义及介绍
  • Eclipse RMI Plugin
  • java命名空间javax.rmi.corba接口portableremoteobjectdelegate的类成员方法: tostub定义及介绍
  • 菜鸟上路。有关rmi????????


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3