上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页
摘要: import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.RandomAccessFile; import java.nio.ByteBuff 阅读全文
posted @ 2021-01-16 11:52 xl4ng 阅读(70) 评论(0) 推荐(0) 编辑
摘要: import java.nio.ByteBuffer; import org.junit.Test; /** * 一、缓冲区(Buffer):在 Java NIO 中负责数据的存取。缓冲区就是数组。用于存储不同数据类型的数据 * * 根据数据类型不同(boolean 除外),提供了相应类型的缓冲区: 阅读全文
posted @ 2021-01-16 10:12 xl4ng 阅读(62) 评论(0) 推荐(0) 编辑
摘要: TCP服务端 import java.net.Socket; public class TCPServer { public static void main(String[] args) { try { ServerSocket serverSocket = new ServerSocket(88 阅读全文
posted @ 2020-12-30 23:09 xl4ng 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 发送端 import java.io.IOException; import java.net.*; public class UDPSend { public static void main(String[] args) throws IOException { DatagramSocket d 阅读全文
posted @ 2020-12-24 22:34 xl4ng 阅读(68) 评论(0) 推荐(0) 编辑
摘要: EchoServer import java.io.*; import java.net.ServerSocket; import java.net.Socket; public class EchoServer { private int port = 8000; private ServerSo 阅读全文
posted @ 2020-12-12 20:04 xl4ng 阅读(58) 评论(0) 推荐(0) 编辑
摘要: import java.net.URLDecoder; import java.net.URLEncoder; public class CodeDemo { public static void main(String[] args) throws Exception { String keyWo 阅读全文
posted @ 2020-12-11 21:14 xl4ng 阅读(121) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.io.IOUtils; import java.io.InputStream; import java.net.URL; import java.net.URLConnection; public class URLConnectionDemo { 阅读全文
posted @ 2020-12-11 21:01 xl4ng 阅读(123) 评论(0) 推荐(0) 编辑
摘要: import org.apache.commons.io.IOUtils; import java.io.InputStream; import java.net.URL; public class URLDemo { public static void main(String[] args) t 阅读全文
posted @ 2020-12-11 20:55 xl4ng 阅读(76) 评论(0) 推荐(0) 编辑
摘要: import java.io.IOException; import java.net.InetAddress; public class InetAddressDemo { public static void main(String[] args) throws IOException { In 阅读全文
posted @ 2020-12-11 20:27 xl4ng 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1.在data中新建一个变量 alarmLevelOptions:[] 2.获取字典信息 this.getDicts("alarm_level").then(response => { this.alarmLevelOptions = response.data; }); 3.在页面中使用 <el- 阅读全文
posted @ 2020-11-29 16:03 xl4ng 阅读(5627) 评论(0) 推荐(1) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页