本文分类:news发布日期:2024/11/8 19:08:56
相关文章
01_理解网络编程和套接字
1.服务端
1.创建套接字
#include <sys/socket.h>
int socket(int domain, int type, int protocol);
// 成功时返回文件描述符,失败时返回-1;
2.套接字分配地址(IP和端口号)
#include <sys/socket.h>
int bind(int sockfd, s…
建站知识
2024/11/3 14:06:25
linux常用网络工具汇总三
linux常用网络工具汇总 6. 抓包工具6.1 wireshark安装界面介绍使用过滤器TCP协议示例关于wireshark的缺点 6.2 tcpdump命令格式关键字使用关于tcpdump的缺点 6.3 fiddler6.4 burpsuite 6. 抓包工具
6.1 wireshark
Wireshark(前称Ethereal)是一个网络封…
建站知识
2024/11/3 14:06:27
Selenium + Python 自动化测试16(Python基础复习)
我们的目标是:按照这一套资料学习下来,大家可以独立完成自动化测试的任务。
上一篇我们讨论了使用模块化测试的测试模型,从某一程度也反映出熟练掌握一门编程语言的重要性。 为了后续进一步深入学习。本篇文章主要做下Python基础知识的复习。…
建站知识
2024/11/8 18:56:35
Java String 去掉特殊字符之前的内容方法
为了去除字符串中某个特殊字符之前(包括该特殊字符本身)的所有内容,我们可以使用Java中的String类的substring和indexOf方法。这里,我将给出一个完整的代码示例,该示例会找到字符串中第一次出现的特定特殊字符…
建站知识
2024/11/3 16:00:10
前端读取response.headers异常:Cannot read properties of undefined (reading ‘split‘)
[TOC](前端读取response.headers异常:Cannot read properties of undefined (reading ‘split’) ) 前端读取response.headers异常 Cannot read properties of undefined (reading ‘split’) TypeError: Cannot read properties of undefined (reading ‘split’) 报错解释&a…
建站知识
2024/11/3 14:06:39
【前端面试】挖掘做过的nextJS项目(上)
为什么使用nextJS
需求:
快速搭建宣传官网
1.适应pc、移动端
2.基本的路由跳转
3.页面渲染优化
4.宣传的图片、视频资源的加载优化
5.seo优化 全栈react web应用、
tailwind css原子工具的支持,方便书写响应式ui
app router(React 服务器组件)支持服务器渲…
建站知识
2024/11/3 14:07:02