应大家急迫要求,本人上传上文中RSA电话本JAVA代码
PhoneBookView.java
import java.io.BufferedReader;
import java.io.InputStreamReader;
/*
* Created on Nov 23, 2005
*/
/**
* @author tng
* View interface for the phone book application
* A simple line command interface is implemented
*/
public class PhoneBookView {
/*
* Attributes transformed from UML by RSA:
*/
// phonebookcontroller and phonebookmodel are generated by RSA
// to represent the association relationship
private PhoneBookController phonebookcontroller;
private PhoneBookModel phonebookmodel;
/*
* Add my own attributes
*/
// The following are some questions to be asked to user
// via the line command interface
public static String ADD_NAME_Q = "Please enter the exact person name";
public static String ADD_NUMBER_Q = "Please enter the phone number";
public static String SEARCH_Q = "Please enter the exact person name.";
public static String IDLE_Q =
"Please enter your choice of action, /"" +
PhoneBookController.ADD_COMMAND + "/" to add a phone entry or /"" +
PhoneBookController.SEARCH_COMMAND +
"/" to search for a phone number or /"" +
PhoneBookController.QUIT_COMMAND + "/" to end the application.";
public static String SEARCH_RESULT_Q =
" - This is the located phone number. Enter /"" +
PhoneBookController.START_COMMAND +
"/" to do more with the application or /"" +
PhoneBookController.QUIT_COMMAND + "/" to end the application.";
public static String SEARCH_NOT_FOUND_Q =
" Phone number not found. Enter /"" +
PhoneBookController.START_COMMAND +
"/" to do more with the application or /"" +
PhoneBookController.QUIT_COMMAND + "/" to end the application.";
public static String ERROR_Q =
"You've entered an invalid choice. Enter /"" +
PhoneBookController.START_COMMAND +
"/" to do more with the application or /"" +
PhoneBookController.QUIT_COMMAND + "/" to end the application.";
/**
* Operations transformed from UML by RSA
*/
/**
* get called when the state has been changed
* @param newState
*/
public void stateHasChanged(PhoneBookModel model, String newState) {
phonebookmodel = model;
changeView(newState);
}
/**
* change the view based on the new state
* @param newState
*/
public void changeView(String newState) {
if (newState.equals(PhoneBookModel.IDLE_STATE)) {
getUserInput(IDLE_Q);
}
else if (newState.equals(PhoneBookModel.ADD_NAME_STATE)) {
getUserInput(ADD_NAME_Q);
}
else if (newState.equals(PhoneBookModel.ADD_NUMBER_STATE)) {
getUserInput(ADD_NUMBER_Q);
}
else if (newState.equals(PhoneBookModel.SEARCH_STATE)) {
getUserInput(SEARCH_Q);
}
else if (newState.equals(PhoneBookModel.SEARCH_RESULT_STATE)) {
String result = phonebookmodel.getSearchResult();
if (result == null || result.length() == 0) {
getUserInput(SEARCH_NOT_FOUND_Q);
}
else {
getUserInput(result + SEARCH_RESULT_Q);
}
}
else if (newState.equals(PhoneBookModel.ERROR_STATE)) {
getUserInput(ERROR_Q);
}
else if (newState.equals(PhoneBookModel.EXIT_STATE)) {
System.out.println("Bye Bye");
}
}
/**
* get user input based on question
* @param question
*/
public void getUserInput(String question) {
BufferedReader in =
new BufferedReader(new InputStreamReader(System.in));
System.out.println(question);
try {
String answer = in.readLine().trim();
phonebookcontroller.userHasInput(answer);
}
catch (Exception e){
e.printStackTrace();
}
}
/**
* Add my own operations
*/
/**
* constructor
* @param controller
*/
public PhoneBookView(PhoneBookController controller) {
phonebookcontroller = controller;
}
}
//
PhoneBookModel.java
import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Enumeration;
import java.util.Hashtable;
/*
* Created on Nov 23, 2005
*/
/**
* @author tng
* Model data for the phone book application.
* The phone book entries are persisted to a file
*/
public class PhoneBookModel {
/*
* Attributes transformed from UML by RSA
*/
// phonebookview is generated by RSA
// to represent the association relationship
private PhoneBookView phonebookview;
/*
* Add my own attributes
*/
// The following are various states captured by the model
public static String ADD_NAME_STATE = "ADD_NAME";
public static String ADD_NUMBER_STATE = "ADD_NUMBER";
public static String SEARCH_STATE = "SEARCH";
public static String IDLE_STATE = "IDLE";
public static String SEARCH_RESULT_STATE = "SEARCH_RESULT";
public static String ERROR_STATE = "ERROR";
public static String EXIT_STATE = "EXIT";
// Private fields used to track various model data
private String state = IDLE_STATE;
private String searchResult = null;
private Hashtable phoneBook = null;
// For persisting the phone book entries into a file
private static final String RECORD_FILE = "phoneBook.txt";
private static final String RECORD_SEPARATOR = "_SEP_";
/**
* Operations transformed from UML by RSA
*/
/**
* set the state
* @param aState
*/
public void setState(String aState) {
state = aState;
phonebookview.stateHasChanged(this, state);
}
/**
* add a phone entry
* @param name
* @param number
*/
public void addAnEntry(String name, String number) {
phoneBook.put(name, number);
}
/**
* search the phone number and set the searchResult field
* @param name
*/
public void searchPhoneNumber(String name) {
searchResult = (String) phoneBook.get(name);
}
/**
* return the search result
*/
public String getSearchResult() {
return searchResult;
}
/**
* get the state
*/
public String getState() {
return state;
}
/**
* Add my own operations
*/
/**
* constructor
* @param view
*/
public PhoneBookModel(PhoneBookView view) {
phonebookview = view;
phoneBook = new Hashtable();
readRecord();
}
/**
* save all the phone entries
*/
public void saveAll() {
writeRecord();
}
/**
* read the phone entries from the file
*/
private void readRecord()
{
File recordFile;
try {
recordFile = new File(RECORD_FILE);
int i = 0;
if (!recordFile.createNewFile()) {
BufferedReader in =
new BufferedReader(new FileReader(recordFile));
for (i = 0; i < 3; i++) {
String record = in.readLine();
if (record != null && record.length() != 0) {
int separatorIndex =
record.indexOf(RECORD_SEPARATOR);
if (separatorIndex != -1) {
String name = record.substring
(0, separatorIndex);
String number = record.substring
(separatorIndex+RECORD_SEPARATOR.length());
phoneBook.put(name, number);
}
}
}
in.close();
}
}
catch (Exception e) {
e.printStackTrace();
}
}
/**
* write the phone entries to file
*/
private void writeRecord()
{
File recordFile;
try {
recordFile = new File(RECORD_FILE);
FileOutputStream out = new FileOutputStream(RECORD_FILE);
PrintStream p = new PrintStream( out );
Enumeration e = phoneBook.keys();
while (e.hasMoreElements()) {
String name = (String)e.nextElement();
String number = (String) phoneBook.get(name);
String newRecord = name + RECORD_SEPARATOR + number;
p.println(newRecord);
}
p.close();
}
catch (IOException e) {
e.printStackTrace();
}
}
}
//
PhoneBookController.java
/*
* Created on Nov 23, 2005
*/
/**
* @author tng
* Controller for the phone book application
* No sophisticated error handling is implemented
*/
public class PhoneBookController {
/*
* Attributes transformed from UML by RSA:
*/
// phonebookmodel and phonebookview are generated by RSA
// to represent the association relationship
private PhoneBookModel phonebookmodel;
private PhoneBookView phonebookview;
/*
* Add my own attributes
*/
// The following are some commands that initiated by
// user抯 selection
public static String START_COMMAND = "start";
public static String QUIT_COMMAND = "quit";
public static String ADD_COMMAND = "add";
public static String SEARCH_COMMAND = "search";
// A private field used to track user抯 input of person name
private String name;
/**
* Operations transformed from UML by RSA
*/
/**
* Called by PhoneBookView to notify user has input
* @param userInput
*/
public void userHasInput(String userInput) {
String currentState = phonebookmodel.getState();
if (userInput != null && userInput.length() != 0) {
if (currentState.equals(PhoneBookModel.IDLE_STATE)) {
if (userInput.equals(ADD_COMMAND)) {
phonebookmodel.setState
(PhoneBookModel.ADD_NAME_STATE);
}
else if (userInput.equals(SEARCH_COMMAND)) {
phonebookmodel.setState
(PhoneBookModel.SEARCH_STATE);
}
else if (userInput.equals(QUIT_COMMAND)) {
phonebookmodel.saveAll();
phonebookmodel.setState
(PhoneBookModel.EXIT_STATE);
}
else {
phonebookmodel.setState
(PhoneBookModel.ERROR_STATE);
}
}
else if (currentState.equals
(PhoneBookModel.ADD_NAME_STATE)) {
name = userInput;
phonebookmodel.setState
(PhoneBookModel.ADD_NUMBER_STATE);
}
else if (currentState.equals
(PhoneBookModel.ADD_NUMBER_STATE)) {
phonebookmodel.addAnEntry(name, userInput);
phonebookmodel.setState(PhoneBookModel.IDLE_STATE);
}
else if (currentState.equals(PhoneBookModel.SEARCH_STATE)){
phonebookmodel.searchPhoneNumber(userInput);
phonebookmodel.setState
(PhoneBookModel.SEARCH_RESULT_STATE);
}
else if (currentState.equals
(PhoneBookModel.SEARCH_RESULT_STATE) ||
currentState.equals
(PhoneBookModel.ERROR_STATE)) {
if (userInput.equals(START_COMMAND)) {
phonebookmodel.setState
(PhoneBookModel.IDLE_STATE);
}
else if (userInput.equals(QUIT_COMMAND)) {
phonebookmodel.saveAll();
phonebookmodel.setState
(PhoneBookModel.EXIT_STATE);
}
else {
phonebookmodel.setState
(PhoneBookModel.ERROR_STATE);
}
}
}
else {
phonebookmodel.setState(PhoneBookModel.ERROR_STATE);
}
}
/**
* start the application
*/
public void start(){
phonebookmodel.setState(PhoneBookModel.IDLE_STATE);
}
/**
* Add my own operations
*/
/**
* constructor
*/
public PhoneBookController() {
phonebookview = new PhoneBookView(this);
phonebookmodel = new PhoneBookModel(phonebookview);
}
/**
* main
* @param args
*/
public static void main(String[] args)
{
PhoneBookController controller = new PhoneBookController();
controller.start();
}
}