我正在使用RMI开发一个简单的电话簿应用程序。我能够启动RMI注册表,并且还为Implementation c1ass生成了存根类。现在我已经在我的cmd提示符中使用命令Java PhoneBookServer启动了服务器。下一步是启动客户端,所以在我启动客户端后出现以下错误!客户端和服务器程序都位于单个文件夹
中我目前为客户端和服务器使用的代码如下
import java.rmi.*;
import java.rmi.server.*;
public class PhoneBookServer {
public static void main (String[] args){
/*Create and install a security manager
SecurityManager appsm = System.getSecurityManager();
if(appsm==null){
System.setSecurityManager(new RMISecurityManager());
}*/
System.out.println("Server is started");
try
{
//create PhoneBookImpl
PhoneBookImpl Pb=new PhoneBookImpl();
Naming.rebind("rmi://127.0.0.1:1099/PhoneBook", Pb);
}
catch(Exception e)
{
System.out.println("Exception is:" +e);
}
}
}
客户计划
import java.rmi.*;
import java.rmi.registry.*;
import java.rmi.server.*;
import java.lang.*;
import java.io.*;
import java.util.Scanner;
public class PhoneBookClient {
public static void main (String[] args) throws Exception
{
/*Create and install a security manager
SecurityManager appsm = System.getSecurityManager();
if(appsm==null){
System.setSecurityManager(new RMISecurityManager());
}*/
String name,number,total,choice,id;
String ch;
PhoneBook pb=(PhoneBook)Naming.lookup("rmi://127.0.0.1:1099"+"/PhoneBook");
Scanner in=new Scanner(System.in);
System.out.println("1.Enter new record /n");
System.out.println("2.Look up record /n");
System.out.println("3.Delete record /n");
System.out.println("Enter your option");
ch=in.nextLine();
if(ch.equals("1")){
do{
System.out.println("Enter unique id:");
id=in.nextLine();
System.out.println("Enter name:");
name=in.nextLine();
System.out.println("Enter phone number:");
number=in.nextLine();
total=name+" "+number;
pb.new_record(id,total);
System.out.println("Enter 'q' to quit or enter 'p' to proceed");
choice=in.nextLine();
}while(!choice.equals("q"));
}
if(ch.equals("2")){
do{
System.out.println("Enter id to look up a record"+" enter 'q' to quit");
id=in.nextLine();
String record=pb.lookup_record(id);
System.out.println("The record is" +record);
}while(!id.equals("q"));
}
if(ch.equals("2")){
do{
System.out.println("Enter id to delete a record"+" enter 'q' to quit");
id=in.nextLine();
pb.lookup_record(id);
System.out.println("The record is deleted");
}while(!id.equals("q"));
}
}
}
以前我有例外:
Connection refused to the host127.0.0.1 access denied.
所以我在我的客户端和服务器程序中安装了安全性mnager。现在我得到了这种新的异常。我该如何解决这个问题。
答案 0 :(得分:0)
摆脱安全管理员。您在此配置中不需要它。摆脱两个安全管理器安装在服务器中:你只能安装一个;并在客户端摆脱它。
我看不出那个服务器代码如何与两个安全管理器一起工作。那不可能是真正的代码。