Browse Source

server v1

Alec 4 years ago
commit
6421631214

+ 3 - 0
.idea/.gitignore

@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml

+ 1 - 0
.idea/description.html

@@ -0,0 +1 @@
+<html>Simple <b>Java</b> application that includes a class with <code>main()</code> method</html>

+ 6 - 0
.idea/encodings.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="Encoding">
+    <file url="PROJECT" charset="UTF-8" />
+  </component>
+</project>

+ 12 - 0
.idea/misc.xml

@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="EntryPointsManager">
+    <entry_points version="2.0" />
+  </component>
+  <component name="ProjectKey">
+    <option name="state" value="project://e2804f05-5315-4fc6-a121-c522a6c26470" />
+  </component>
+  <component name="ProjectRootManager" version="2" languageLevel="JDK_14" default="true" project-jdk-name="openjdk-14" project-jdk-type="JavaSDK">
+    <output url="file://$PROJECT_DIR$/out" />
+  </component>
+</project>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/NetWork.iml" filepath="$PROJECT_DIR$/NetWork.iml" />
+    </modules>
+  </component>
+</project>

+ 3 - 0
.idea/project-template.xml

@@ -0,0 +1,3 @@
+<template>
+  <input-field default="com.company">IJ_BASE_PACKAGE</input-field>
+</template>

+ 6 - 0
.idea/vcs.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="VcsDirectoryMappings">
+    <mapping directory="$PROJECT_DIR$" vcs="Git" />
+  </component>
+</project>

+ 12 - 0
NetWork.iml

@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="JAVA_MODULE" version="4">
+  <component name="NewModuleRootManager" inherit-compiler-output="true">
+    <exclude-output />
+    <content url="file://$MODULE_DIR$">
+      <sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
+    </content>
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>
+

BIN
out/production/NetWork/client/Main.class


BIN
out/production/NetWork/com/company/Client.class


BIN
out/production/NetWork/com/company/Main.class


+ 35 - 0
src/client/Main.java

@@ -0,0 +1,35 @@
+package client;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.Socket;
+import java.nio.charset.StandardCharsets;
+
+public class Main {
+    public static void main(String[] args) {
+        try {
+            Socket socket = new Socket("127.0.0.1", 6000);
+
+            OutputStream os = socket.getOutputStream();
+            InputStream is = socket.getInputStream();
+
+            os.write("Hello".getBytes());
+            os.flush();
+
+            byte []input = new byte[1024];
+            is.read(input);
+
+            System.out.println(new String(input, StandardCharsets.UTF_8));
+
+        } catch (IOException e) {
+            e.printStackTrace();
+        }
+    }
+}
+
+//class Data {
+//    public int currentCountCardOnDesk = 0;
+//    public Card []cards = new Card[5];
+//    public RATE_TYPE rateType;
+//}

+ 50 - 0
src/com/company/Client.java

@@ -0,0 +1,50 @@
+package com.company;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+import java.net.Socket;
+import java.nio.charset.StandardCharsets;
+import java.util.List;
+import java.util.Scanner;
+
+public class Client extends Thread {
+    private Socket socket;
+    private InputStream inputStream;
+    private OutputStream outputStream;
+    // Список всех подключенных слиентов
+    private List<Client> clientList;
+
+    public static int READ_BUFFER_SIZE = 1024;
+
+    public Client(Socket socket, List<Client> clientList) throws IOException {
+        this.socket = socket;
+        this.clientList = clientList;
+
+        inputStream = socket.getInputStream();
+        outputStream = socket.getOutputStream();
+    }
+
+    @Override
+    public void run() {
+       byte []buffer = new byte[READ_BUFFER_SIZE];
+       while (!isInterrupted()) {
+           try {
+               inputStream.read(buffer);
+
+               for (Client client : clientList) {
+                   if (client != this) {
+                       client.outputStream.write(buffer);
+                   }
+               }
+
+               System.out.print("Клиент " + socket.getLocalAddress().getHostAddress() + " ");
+               System.out.println(new String(buffer, StandardCharsets.UTF_8));
+
+           } catch (IOException exception) {
+               System.out.println("Не смог прочитать данные клиента " + socket.getLocalAddress().getHostAddress());
+           }
+       }
+
+    }
+}

+ 32 - 0
src/com/company/Main.java

@@ -0,0 +1,32 @@
+package com.company;
+
+import java.io.IOException;
+import java.net.ServerSocket;
+import java.net.Socket;
+import java.nio.charset.StandardCharsets;
+import java.util.ArrayList;
+import java.util.List;
+
+public class Main {
+
+    public static void main(String[] args) {
+
+        List<Client> clients = new ArrayList<>();
+
+        try {
+            ServerSocket ss = new ServerSocket(6000);
+
+            while (true) {
+                Socket clientSocket = ss.accept();
+
+                Client client = new Client(clientSocket, clients);
+                clients.add(client);
+                client.start();
+            }
+
+        } catch (IOException e) {
+            e.printStackTrace();
+        }
+    }
+
+}