/** * 使用socket读取网页内容 */ private static void socketReadWebPage() { try { String strHost = "www.baidu.com"; InetSocketAddress socketAddress = new InetSo ...
分类:
编程语言 时间:
2020-06-02 11:32:18
阅读次数:
85
vim /etc/netplan/01-netcfg.yaml network: ethernets: ens33: addresses: - 192.168.0.66/24 # IP及掩码 gateway4: 192.168.0.1 # 网关 nameservers: addresses: - 2 ...
分类:
系统相关 时间:
2020-06-02 11:00:28
阅读次数:
55
Java网络应用程序中,使用java.net包中的InetAddress类表示IP地址,这个类被大多数的网络类所引用,可同时支持IPV4和IPV6。该类用两个字段表示一个IP地址,hostName和address,hostName包含了主机名,address包含了32位的IP地址。 InetAddr ...
分类:
Web程序 时间:
2020-06-02 09:24:38
阅读次数:
59
AR2配置 interface GigabitEthernet0/0/0 ip address 12.1.1.2 255.255.255.0 # interface GigabitEthernet0/0/1 ip address 192.168.10.254 255.255.255.0 interf ...
分类:
其他好文 时间:
2020-06-01 23:35:35
阅读次数:
93
设置IP地址为动态获取 netsh interface ip set address name="本地连接" source=dhcp 配置静态IP的命令 netsh interface ip set address name="本地连接" source=static addr=192.168.36. ...
AR3配置 interface GigabitEthernet0/0/0 ip address 23.1.1.3 255.255.255.0 # interface GigabitEthernet0/0/1 ip address 192.168.1.254 255.255.255.0 ospf 1 ...
分类:
其他好文 时间:
2020-05-31 17:48:22
阅读次数:
114
官方文档: https://wiki.mikrotik.com/wiki/Manual:PPP_AAA on-up (script; Default: ) Execute script on user login-event. These are available variables that a ...
分类:
其他好文 时间:
2020-05-31 17:41:48
阅读次数:
87
Vue结合网络数据开发应用 axios:功能强大的网路请求库 <script src="https://unpkg.com/axios/dist/axios.min.js"></script>语法:axios.get(address?key=value&key2=value).then(functi ...
分类:
Web程序 时间:
2020-05-31 12:59:09
阅读次数:
111
1. 已知对象去除固定的key及其对应的value 例:将下面obj对象中的name去掉 var obj = {'name':'lxh','hobby':'running','address':'software park'} 命令 delete obj['name'] ...
分类:
Web程序 时间:
2020-05-29 21:39:48
阅读次数:
70
debug启动的时候需要等半个小时甚至更长时间突然有一天发现debug启动不起来了, 在debug时,项目一直会出现 Connected to the VM ,address: 其实这不是debug报错,没有启动 其实是一直处于启动中状态,日志刷的很慢 原因,之前存在断点没有取消,造成启动缓慢 解决 ...
分类:
其他好文 时间:
2020-05-29 21:06:27
阅读次数:
126