资源简介
西北工业大学,软件学院,网络与分布计算,Exam2(机试2),Exam 2 分布式消息系统,使用RMI建立一个分布式消息系统。该系统需实现用户注册、查看所有已注册用户信息、给其他用户留言,以及查看其它用户给自己的留言。

代码片段和文件信息
import java.io.*;
import java.rmi.*;
import java.util.*;
/**
* class Client represents a client for the SSD8 Distributed Message
* Center.
*
* @author wben
* @version 1.0
*
*/
public class Client {
/**
* main method
*/
public static void main(String[] args) {
int portNumber = 1099;
String hostname = “localhost“;
BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
/**
* Print usage instructions if the incorrect paramteres are supplied.
*/
int choice = 0;
String username password recipientname message;
/**
* Create the connection to the message center.
*/
MessageInterface mc = null;
try {
mc = (MessageInterface) Naming.lookup(“rmi://“ + hostname + “:1099“ + “/Message“);
} catch (Exception e) {
e.printStackTrace();
}
/**
* Loop forever while displaying the menu and performing operations for
* the user.
*/
while (true) {
System.out.println(“********** Distributed Message Center ********** “);
System.out.println(“(1) Show registered users “);
System.out.println(“(2) Register a new user“);
System.out.println(“(3) Check Messages“);
System.out.println(“(4) Leave a message“);
System.out.println(“(5) Exit“);
System.out.println(“************************************************“);
System.out.println(“Enter choice: “);
try {
choice = Integer.parseInt(keyboard.readLine());
} catch (IOException e) {
e.printStackTrace();
}
if (choice == 1) {
try {
String sr = null;
sr =mc.showusers();
System.out.println(sr);
} catch (Exception e) {
e.printStackTrace();
}
}
if (choice == 2) {
try {
System.out.println(“Enter username: “);
username = keyboard.readLine();
System.out.println(“Enter password: “);
password = keyboard.readLine();
if (!mc.register(username password)) {
System.out.println(“Registration failed try another username!“);
} else {
System.out.println(“Registration succeeded!“);
}
} catch (Exception e) {
e.printStackTrace();
}
}
if (choice == 3) {
try {
System.out.println(“Enter username: “);
username = keyboard.readLine();
System.out.println(“Enter password: “);
password = keyboard.readLine();
Vector messages = mc.checkmessages(username password);
if (messages == null) {
System.out.println(“Authentication failed or you have no messages!“);
} else {
System.out.println(“Your messages: “);
for (int i = 0; i < messages.size(); i++) {
System.out.println((Message) messages.get(i));
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
if (choice == 4) {
try {
System.out.println(“Enter your username: “);
username = keyboard.readLine();
System.out.println(“Enter your pa
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-12-28 17:32 Exam2\
文件 302 2019-12-28 15:25 Exam2\.classpath
文件 379 2019-12-28 15:25 Exam2\.project
目录 0 2019-12-28 17:32 Exam2\.settings\
文件 598 2019-12-28 15:25 Exam2\.settings\org.eclipse.jdt.core.prefs
目录 0 2019-12-28 17:32 Exam2\bin\
文件 3665 2019-12-28 17:28 Exam2\bin\Client.class
文件 2051 2019-12-28 15:28 Exam2\bin\Message.class
文件 3120 2019-12-28 17:31 Exam2\bin\MessageCenter.class
文件 507 2019-12-28 17:26 Exam2\bin\MessageInterface.class
文件 1140 2019-12-28 15:59 Exam2\bin\RMIServer.class
文件 1095 2019-12-28 16:54 Exam2\bin\User.class
目录 0 2019-12-28 17:32 Exam2\src\
文件 3504 2019-12-28 17:28 Exam2\src\Client.java
文件 1953 2019-12-28 15:28 Exam2\src\Message.java
文件 3128 2019-12-28 17:31 Exam2\src\MessageCenter.java
文件 913 2019-12-28 17:26 Exam2\src\MessageInterface.java
文件 651 2019-12-28 15:59 Exam2\src\RMIServer.java
文件 988 2019-12-28 16:54 Exam2\src\User.java
- 上一篇:flexslider轮播实现源码
- 下一篇:cxGrid指定列回车跳转
相关资源
- 黑大软件学院软件工程概论实验.rar
- 北航软件学院复试专业基础
- 大工软件学院操作系统第四次上机
- 东北大学软件学院编译方法两次实验
- 东北大学软件学院数值分析历年试题
- 哈工大软件学院算法分析与设计考试
- 西北工业大学计算机组成原理实验报
- 山东大学软件学院软件工程复习资料
- 山东大学软件学院机组考点整理复习
- 山东大学软件学院众智科学复习题及
- 重庆大学软件学院机器学习ppt
- 华南理工大学软件学院计算机图形学
- 华东交通大学软件学院毕业设计
- 西北工业大学自动化复试946资料
- 东北大学软件学院信息安全程序实践
- 四川大学软件学院《编译原理》近三
- 西北工业大学信号与系统实验课实验
- 软件体系结构作业和答案 2019级中科大
- 武汉大学国际软件学院解释器构造作
- 西北工业大学软件学院电子服务方向
- 《软件工程概述》PPT课件——清华大
- 哈工大软件学院系统分析与设计课件
- 哈工大软件学院系统分析与设计课件
- 山东大学软件学院 非关系型数据库实
- 多核多线程技术 (高清 带书签) (
- 中北大学软件学院操作系统课程设计
- 中科大嵌入式Linux 期末复习
- 重庆大学软件学院多媒体技术实验三
- 西北工业大学软件学院数据库设计试
- 西北工业大学软件学院软件开发综合
评论
共有 条评论