简体   繁体   English

无法从PHP套接字服务器获取响应

[英]Cannot get response from PHP socket server

I make simple socket java client and php cli-based socket echo server. 我制作了简单的套接字Java客户端和基于php cli的套接字回显服务器。
But client doesn't get echo from server. 但是客户端不会从服务器获得回显。
Theres a code... 有一个代码...

[CLIENT_CLASS (JAVA)] [CLIENT_CLASS(JAVA)]

import java.net.*;
import java.io.*;
import java.util.logging.Level;
import java.util.logging.Logger;

public class SocketManager
{

    public static void main(String args[])
    {
        int count = 0;
        Socket socket = null;
        System.out.println("[TO 8175] Connecting to " + "clashofages.ru" + ":" + 8175 + "...");
        while (socket == null) {
            if (count > 10) {
                System.out.println("[TO 8175] Can't connect to server...");
                return 1;
            }
            socket = connect("clashofages.ru", 8175);
            count++;
        }
        System.out.println("[TO 8175] Successfuly connected!");

        DataInputStream in = getInput(socket);
        if (in == null) {
            return 2;
        }
        DataOutputStream out = getOutput(socket);
        if (out == null) {
            return 3;
        }

        BufferedReader keyboard = new BufferedReader(new InputStreamReader(System.in));
        String line = null;

        while (true) {
            System.out.println("[TO 8175] Type in message for server.");
            try {
                line = keyboard.readLine();
            } catch (IOException ex) {
                Logger.getLogger(SocketManager.class.getName()).log(Level.SEVERE, null, ex);
            }
            System.out.println("[TO 8175] Sending message to server...");
            int writeres = write(out, line);
            if (writeres != 2) {
                return 4 + writeres;
            }
            System.out.println("[TO 8175] Message sent successfuly!");
            if (line.equals("exit")) {
                System.out.println("[TO 8175] Exiting...");
                return 0;
            }
            line = read(in);
            if (line == null) {
                return 6;
            }
            System.out.println("[TO 8175] Server: " + line);
        }
    }

    public static Socket connect(String adress, int port)
    {
        Socket socket = null;
        InetAddress ipAddress = null;
        try {
            ipAddress = InetAddress.getByName(adress);
        } catch (UnknownHostException ex) {
            System.out.println("[SOCKET_ERROR] Can't convert " + adress + " to InetAdress object");
            return socket;
        }
        try {
            socket = new Socket(ipAddress, port);
        } catch (IOException ex) {
            System.out.println("[SOCKET_ERROR] Can't connect to " + adress + ":" + port);
            return null;
        }
        return socket;
    }

    public static DataInputStream getInput(Socket socket)
    {
        InputStream sin = null;
        try {
            sin = socket.getInputStream();
        } catch (IOException ex) {
            System.out.println("[SOCKET_ERROR] Can't get socket's input stream");
            return null;
        }
        return new DataInputStream(sin);
    }

    public static DataOutputStream getOutput(Socket socket)
    {
        OutputStream sout = null;
        try {
            sout = socket.getOutputStream();
        } catch (IOException ex) {
            System.out.println("[SOCKET_ERROR] Can't get socket's output stream");
            return null;
        }
        return new DataOutputStream(sout);
    }

    public static int write(DataOutputStream out, String string)
    {
        try {
            out.writeUTF(string);
        } catch (IOException ex) {
            System.out.println("[SOCKET_ERROR] Can't write to output stream");
            return 0;
        }
        try {
            out.flush();
        } catch (IOException ex) {
            System.out.println("[SOCKET_ERROR] Can't flush output stream");
            return 1;
        }
        return 2;
    }

    public static String read(DataInputStream in)
    {
        try {
            return in.readUTF();
        } catch (IOException ex) {
            System.out.println("[SOCKET_ERROR] Can't read input stream");
            return null;
        }
    }

[SERVER_CLI_CLASS (PHP)] [SERVER_CLI_CLASS(PHP)]

#!/usr/bin/php
<?php
error_reporting(E_ALL);
set_time_limit(0);
ob_implicit_flush();

$address = '0.0.0.0';
$port = 8175;

if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) === false) {
    echo "[SERVER] socket_create() failed: ".socket_strerror(socket_last_error())."\n";
}
if (socket_bind($sock, $address, $port) === false) {
    echo "[SERVER] socket_bind() failed: ".socket_strerror(socket_last_error($sock))."\n";
}
if (socket_listen($sock, 5) === false) {
    echo "[SERVER] socket_listen() failed: ".socket_strerror(socket_last_error($sock))."\n";
}
echo "[SERVER] Start listening ".$address.":".$port."\n";
do {
    if (($msgsock = socket_accept($sock)) === false) {
        echo "[SERVER] socket_accept() failed: reason: ".socket_strerror(socket_last_error($sock))."\n";
        break;
    }
    echo "[SERVER] Client connected!\n";
    $msg = "[SERVER] Welcome!\n";
    socket_write($msgsock, $msg, strlen($msg));

    do {
        if (false === ($buf = socket_read($msgsock, 2048, PHP_NORMAL_READ))) {
            echo "[SERVER] socket_read() failed: ".socket_strerror(socket_last_error($msgsock))."\n";
            break 2;
        }
        if (!$buf = trim($buf)) {
            continue;
        }
        if ($buf == 'quit') {
            break;
        }
        $talkback = "[SERVER] You said '$buf'.\n";
        socket_write($msgsock, $talkback, strlen($talkback));
        echo "[CLIENT] $buf\n";
    } while (true);
    socket_close($msgsock);
} while (true);

socket_close($sock);
?>

Server output: 服务器输出:

[SERVER] Start listening 0.0.0.0:8175
[SERVER] Client connected!

Client output: 客户输出:

[TO 8175] Connecting to clashofages.ru:8175...
[TO 8175] Successfuly connected!
[TO 8175] Type in message for server.
Hi!
[TO 8175] Sending message to server...
[TO 8175] Message sent successfuly!

Any idea, brothers? 知道吗,兄弟?

PS I think problem occures when PHP trying to write to client... PS我认为当PHP尝试写入客户端时出现问题...
PPS You can try it yourself. PPS您可以自己尝试。 Server is working now.. 服务器正在工作。

Readed at http://www.php.net/manual/en/function.socket-read.php : http://www.php.net/manual/en/function.socket-read.php中阅读:

PHP_NORMAL_READ - reading stops at \\n or \\r. PHP_NORMAL_READ-读取在\\ n或\\ r停止。

Readed at http://docs.oracle.com/javase/7/docs/api/java/io/BufferedReader.html#readLine() : http://docs.oracle.com/javase/7/docs/api/java/io/BufferedReader.html#readLine()中阅读:

Returns: A String containing the contents of the line, not including any line-termination characters, or null if the end of the stream has been reached 返回:包含行内容的String, 不包含任何行终止字符;如果已到达流的末尾,则返回null

So, you have to add \\n or \\n to the readed string before sending it. 因此,您必须在发送的字符串之前添加\\ n或\\ n到读取的字符串。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM