0

我正在尝试向 SMTP 服务器发送 EHLO 命令。连接成功,但我似乎无法从中读取任何数据:

 ByteBuffer byteBuffer = null;
    try {
        socketChannel = SocketChannel.open();
        socketChannel.connect(new InetSocketAddress("host", 25));
        socketChannel.configureBlocking(true);
        byteBuffer = ByteBuffer.allocateDirect(4 * 1024);

    } catch (Exception e) {
        e.printStackTrace();
    }

    try {
        byteBuffer.clear();
        socketChannel.write(byteBuffer.put(SMTP_EHLO.getBytes()));
        byteBuffer.flip();
        socketChannel.read(byteBuffer);
        byteBuffer.get(subStringBytes);
        String ss = new String(subStringBytes);
        System.out.println(byteBuffer);

    } catch (IOException e) {
        e.printStackTrace();
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

print 语句的输出总是 \u000(null)

4

1 回答 1

1
    socketChannel.write(byteBuffer.put(SMTP_EHLO.getBytes()));

put将 SMTP_EHLO 放入缓冲区,但您必须在写入flip()缓冲区之前将其写入。否则,您不会向套接字通道写入任何内容。来自SocketChannelJavadoc:

尝试将最多 r 个字节写入通道,其中 r 是缓冲区中剩余的字节数,即src.remaining(),在调用此方法时。

Buffer#remaining()

public final int remaining()

返回当前位置和限制之间的元素数。

因此,在byteBuffer.put(...)当前位置 == 限制之后。

于 2012-08-08T19:52:33.987 回答