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
Get step-by-step solutions from verified subject matter experts
