摘要:
import javafx.application.Application; import javafx.scene.Group; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.stage.S 阅读全文
摘要:
![](https://img2020.cnblogs.com/blog/1981248/202102/1981248-20210213211515265-2140384863.png) 阅读全文
摘要:
阅读全文
摘要:
源端口和目标端口 该字段长度均为16位。TCP协议通过使用端口来标识源端和目标端的应用进程,端口号范围为0~65535。 序列号 该字段长度为32位。因此序号范围为[0,223-1]。序号值是进行mod 232运算的值,即序号值为最大值232-1后,下一个序号又回到0。 确认号 字段长度为32位。期 阅读全文
摘要:
import org.junit.Test; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.stream.Stream; public class Main { 阅读全文
摘要:
import java.io.IOException; import java.nio.ByteBuffer; import java.nio.channels.Pipe; import org.junit.Test; public class TestPipe { @Test public voi 阅读全文
摘要:
import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.DatagramChannel; import java.nio.c 阅读全文
摘要:
import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.SelectionKey; import java.nio.chan 阅读全文
摘要:
import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; import java.nio.chann 阅读全文
摘要:
import java.io.IOException; import java.net.InetSocketAddress; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; import java.nio.chann 阅读全文