Question: //Simple enumeration for user commands public enum UserCommand { SEND_MESSAGE, SEND_FILE } ----------------------- try { DataOutputStream output = new DataOutputStream(peerSocket.getOutputStream()); logger.log(Waiting for user text); while

//Simple enumeration for user commands public enum UserCommand { SEND_MESSAGE, SEND_FILE }

-----------------------

try { DataOutputStream output = new DataOutputStream(peerSocket.getOutputStream()); logger.log("Waiting for user text"); while (running) { String userInput = scanner.nextLine();

UserCommand command = parseUserCommand(userInput); if (command == UserCommand.SEND_MESSAGE) { sendTextMessage(output, userInput); } else { String filename = parseFilename(userInput); String filelocation = parseFileLocation(userInput); sendFile(output, filename, filelocation); } output.flush(); } } catch (IOException e) { running = false; }

------------------

could someone explain to me what exactly this class do .

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!