搭建内网穿透服务
地址:https://github.com/ehang-io/nps开始工作:关闭防火墙,开启8024,1025,9000服务端配置如下:1.下载对应客户端和服务端 2.修改服务端的配置文件/conf/nps.conf,修改端口8080为9000,修改用户名和和密码 3.然后到含有nps执行文件的文件夹中,执行sudo ./nps install 最后执行 sudo ./nps start|sto
地址:https://github.com/ehang-io/nps开始工作:关闭防火墙,开启8024,1025,9000服务端配置如下:1.下载对应客户端和服务端 2.修改服务端的配置文件/conf/nps.conf,修改端口8080为9000,修改用户名和和密码 3.然后到含有nps执行文件的文件夹中,执行sudo ./nps install 最后执行 sudo ./nps start|sto
yum install screen #此处为centosapt install screen #此处为Ubuntu/Debianscreen -S 随便取一个你记得的名字screen -R 加名称 恢复屏幕ctrl +a+d 连续按 可以关闭屏幕
idea热部署的步骤:1.2.3.
杂货一continue语句的使用场景 for (int i = 0; i < 10; i++) { if (i==5){ continue; } System.out.println(i); } 打印的结果中5没有打印出来 或者: int a=4; for