We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db33fa9 commit 4eaa5e9Copy full SHA for 4eaa5e9
TCP_Server_And_Client_Application/Programed_In_the_teacher's_way./Client_Side.java
@@ -32,8 +32,7 @@ private static void accessServer() {
32
link = new Socket(host, PORT); // STEP 1
33
Scanner input = new Scanner(link.getInputStream()); // STEP 2
34
35
- PrintWriter output = new PrintWriter(link.getOutputStream(), true);
36
-// STEP 2
+ PrintWriter output = new PrintWriter(link.getOutputStream(), true); // STEP 2
37
Scanner userEntry = new Scanner(System.in);
38
String message, response;
39
do {
@@ -61,4 +60,4 @@ private static void accessServer() {
61
60
};
62
63
64
-};
+};
0 commit comments