原文:https://www.cnblogs.com/shamo89/p/8177182.html (一)RestTemplate 客户端 1、RestTemplate 是Spring的封装,需要spring的包 spring-web-3.0.7.RELEASE.jar 2、客户端代码: 1 /** ...
分类:
编程语言 时间:
2020-05-14 17:34:33
阅读次数:
150
客户端代码: public class ClientDemo { public static void main(String[] args) throws IOException { //创建客户端Scoket对象 Socket s= new Socket("192.168.50.76",4444 ...
分类:
编程语言 时间:
2020-05-11 21:57:20
阅读次数:
64
客户端代码: public class ClientDemo { public static void main(String[] args) throws IOException { //创建客户端Socket对象 Socket s = new Socket("192.168.50.76", 33 ...
分类:
Web程序 时间:
2020-05-11 15:56:50
阅读次数:
80
客户端代码: public class ClientDemo { public static void main(String[] args) throws IOException { //创建客户端Socket对象 Socket s= new Socket("192.168.50.76",2222 ...
分类:
其他好文 时间:
2020-05-09 21:20:35
阅读次数:
69
客户端代码: public class ClientDemo { public static void main(String[] args) throws IOException { //创建客户端Socket对象 Socket s = new Socket("192.168.50.76",111 ...
分类:
其他好文 时间:
2020-05-09 20:58:27
阅读次数:
84
文件上传漏洞的成因 1.服务器的错误配置2.开源编码器漏洞3.本地上传上限制不严格被绕过4.服务器端过滤不严格被绕过常见上传检测流程 文件上传漏洞的危害 (1)网站被控制(2)服务器沦陷(3)同服务器的其他网站沦陷 客户端验证检测 可以看到客户端代码中使用了javascript语言进行了简单的文件后 ...
分类:
Web程序 时间:
2020-05-03 12:52:37
阅读次数:
126
效果: 客户端 服务器 客户端代码: 1 import socket 2 3 4 def main(): 5 while True: 6 # 1.创建套接字 7 client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 8 9 ...
分类:
其他好文 时间:
2020-04-08 12:04:34
阅读次数:
55
首先,我们通过一个DEMO来模拟TCP的拆包粘包的情况:客户端连续向服务端发送100个相同消息。服务端的代码如下: 客户端代码如下: java AtomicLong count = new AtomicLong(0); NioEventLoopGroup boss = new NioEventLoo ...
分类:
Web程序 时间:
2020-03-21 14:53:20
阅读次数:
69
一、客户端代码 public class Test2_UpdateClient { public static void main(String[] args) throws UnknownHostException, IOException { // 1.提示输入要上传的文件路径, 验证路径是否存 ...
分类:
Web程序 时间:
2020-03-11 11:12:23
阅读次数:
72
手写RPC: 1.客户端代码 接口: /** * *类说明:服务员接口 */ public interface TechInterface { //洗脚服务 String XJ(String name); } package enjoyedu.rpc; import java.io.ObjectIn ...
分类:
其他好文 时间:
2020-03-08 22:05:25
阅读次数:
66