我需要通过字节缓冲区传输 2 个整数和一个字符串。然后通过 bytebuffer 接收另一个字符串。
一定有这样的:从keyboard.Enter中读取x(int)。从键盘读取 y (int)。回车。从键盘读取字符串。进入。所有的值都在某个地方,正在处理中,我必须接收字符串。一切都是通过套接字通道完成的。
我做了这样的事情:发送
Scanner scanner=new Scanner(System.in);
int m,n;
String str,result;
System.out.println("x=");
m=scanner.nextInt();
System.out.println("y=");
n=scanner.nextInt();
System.out.println("String: ");
str=scanner.next();
ByteBuffer bb=ByteBuffer.allocate(100);
bb.putInt(0,m).putInt(8,n).put(str.getBytes()); // problem?
try{
sc.write(bb);
bb.clear();
sc.read(bb);
CharBuffer cbuf = bb.asCharBuffer();
result=cbuf.toString();
System.out.println("Result : "+result);
收到:
ByteBuffer bb = ByteBuffer.allocate(100);
socketChannel.read(bb);
int m=bb.getInt(0);
int n=bb.getInt(8);
String str=bb.toString().substring(16);
App app=new App();
String result=app.longestRepeatingSubstring(str,m,n);
bb.clear();
bb.put(result.getBytes());
socketChannel.write(bb);
socketChannel.close();
但我收到一个空字符串...
或者,如果我直接输入 bb.toString(),我会收到如下信息: java.nio.HeapByteBuffer[pos=237 lim=258 cap=798]