摘要:
# 如果xlrd运行报错,先卸载当前安装的xlrd # pip uninstall xlrd # 再安装低版本的xlrd # pip install xlrd==1.2.0 import xlrd import sys import os def read_excel_dict(excelPath, 阅读全文
摘要:
获取字符串中的参数: 方法一:strtok() #include<stdio.h> #include<string.h> int main(void) { char url[]="rtsp://223.99.188.13/TVOD/88888888/224/3221226214/102553956_ 阅读全文
摘要:
import java.io.IOException; import java.net.InetAddress; import java.net.UnknownHostException; import java.net.*; public class getIP{ public static void main(String[] args) throws IOException { ... 阅读全文
摘要:
老大给我们新人出了个题,记录一下自己写的结构混乱的代码= = 题目说明: 文本文件中有N条书本的记录,每条记录的格式为:“类型编号TABLE类内序列号TABLE书名TABLE条形码”。其中“类型编号”的范围是1~255;“类内序列号”的范围1~999;“书名”长度小于64字节;“条形码”长度18字节 阅读全文
摘要:
解析图片文件格式,获取图片名称、类型、像素宽高 图片文件格式参考:https://blog.csdn.net/adzcsx2/article/details/50503506 1、ImageFile.cpp: 2、ImageFile.h: 阅读全文