1.第三方提供了这么一个API接口,POST后将附件以file文件上传,通过postman工具界面是下面这种样子 Body为form-data类型,不管是文本还是文件,都能在value上填上去 2.C#实现接口调用代码 public static string PostForm(string url ...
client #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <time.h> #include <arpa/inet.h> #include <sys/socket.h> ...
分类:
其他好文 时间:
2021-05-24 12:27:36
阅读次数:
0
第一步获取待下载文件列表. 解压缩到到执行目录下面 我这边使用Windows10 里面的 WSL的方式直接进行相关工作 ls *.zip > list.url 将需要下载的zip包变成列表文件. 第二步 使用shell脚本进行判断文件是否存在 #!/bin/bash echo " "> /deplo ...
分类:
其他好文 时间:
2021-05-24 12:11:03
阅读次数:
0
2021/5/15 绵阳经开区小雨 周六 在家工作 getBoundingClientRect():这是一个非常优秀的属性; 例子: let A = document.getElementsByClassName('tag8')[0].getBoundingClientRect(); if(A.to ...
分类:
Web程序 时间:
2021-05-24 10:11:48
阅读次数:
0
使用组件 MongoDB.Driver 插入数据 class Program { static void Main(string[] args) { AddWorkerToMongo(); } static void AddWorkerToMongo() { var client = new Mon ...
分类:
数据库 时间:
2021-05-24 09:44:03
阅读次数:
0
安装 1. KEPServerEX-6.5.829.0 2. 将补丁程序拷贝至\Kepware\KEPServerEX *\ 文件夹中,并执行补丁程序 配置 1.新建通道 新建设备 添加点位 启动OPC Quick Client 模拟测试 更改寄存器数据 ...
分类:
其他好文 时间:
2021-05-24 09:25:55
阅读次数:
0
在官网下载二进制包:这里直接使用wget wget https://cdn.zabbix.com/zabbix/binaries/stable/4.0/4.0.30/zabbix_agent-4.0.30-linux-3.0-amd64-static.tar.gz 之后进行解压 [root@zabb ...
分类:
其他好文 时间:
2021-05-24 08:48:26
阅读次数:
0
iperf2(又叫iperf)帮助手册:https://iperf2.sourceforge.io/iperf-manpage.html iperf分为Server端和Client端, 服务器端: iperf -s -i 1 客户端: iperf -c 192.168.13.4 -i 1 -t 60 ...
分类:
其他好文 时间:
2021-05-24 08:44:11
阅读次数:
0
例子是XE的 只是本人测试的,仅供学习!代码很乱! 在一个程序中测试 IdTcpClient和IdTcpServer有点坑, 测试的时候最好写Client和Server两个程序测试 Unit开始 unit Unit1; interface uses Windows, Messages, SysUti ...
最近在做项目中使用python,tcp发送json数据格式,但是网上大都是python2版本的,因此自己弄了一个python3的版本,特此记录一下。 客户端代码如下: 1 # python 3 #客户端 import numpy as np import socket import json TCP ...
分类:
编程语言 时间:
2021-05-24 08:03:03
阅读次数:
0