Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーに整数を送信しようとしました。これは私のクライアントコードです
out = new PrintWriter(_socket.getOutputStream(), true); Random rand = new Random(); int n = rand.nextInt(50) + 1; out.println(n);
しかし、サーバーはどのようにそれを読み取ることができますか?
代わりに DataOutputStream.writeInt() / DataInputStream.readInt() ペアを使用してください。