5

是否有任何小型工作程序用于使用 java nio 从客户端接收和发送数据。

实际上我无法写入套接字通道,但我能够读取传入数据如何将数据写入套接字通道

谢谢迪帕克

4

1 回答 1

5

您可以像这样将数据写入套接字通道:

import java.nio.*;
import java.nio.channels.*;
import java.nio.charset.*;

public class SocketWrite {

  public static void main(String[] args) throws Exception{

    // create encoder
    CharsetEncoder enc = Charset.forName("US-ASCII").newEncoder();  

    // create socket channel
    ServerSocketChannel srv = ServerSocketChannel.open();

    // bind channel to port 9001   
    srv.socket().bind(new java.net.InetSocketAddress(9001));

    // make connection
    SocketChannel client = srv.accept(); 

    // UNIX line endings
    String response = "Hello!\n";

    // write encoded data to SocketChannel
    client.write(enc.encode(CharBuffer.wrap(response)));

    // close connection
    client.close();
  }
}

InetSocketAddress可能会因您连接的内容而异。

于 2009-05-16T07:21:02.520 回答