引入Pandas,用于有关数据处理和分析的环节。 一、读取数据文件 1 .读取excel数据文件 1.1加载Excel表,使用skiprows=1跳过首行【对于一个excel文件,首行一般为字段的定义(标题行),第二行才为数据】 并指定加载的列,注意数据文件的编码,默认utf-8,常用还有gb231 ...
分类:
其他好文 时间:
2021-04-29 11:36:23
阅读次数:
0
使用命令行生成 javadoc命令生成自己的api文档 javadoc [options] [packagenames] [sourcefiles] [@files] 参数: -overview <file> 从 HTML 文件读取概览文档 -public 仅显示 public 类和成员 -prot ...
分类:
编程语言 时间:
2021-03-30 12:47:11
阅读次数:
0
python 批量检测泛微云桥任意文件读取漏洞 1.fofa收集目标 fofa搜集目标脚本,使用时替换cookie,生成ip.txt #!/usr/bin/env python #-*- coding:utf-8 _*- import requests from lxml import etree ...
分类:
编程语言 时间:
2021-03-18 14:26:43
阅读次数:
0
使用EasyExcel操作excel https://www.yuque.com/easyexcel/doc/easyexcel 返回指定json格式数据 1)添加课程分类 获取上传过来的excel文件,读取里面的内容,存入数据库 当不需要spring管理的类(如Listern等)调用注入到spri ...
分类:
其他好文 时间:
2021-03-15 10:56:22
阅读次数:
0
Service层和dao层写接口层时,properties文件的信息读取: 读取配置文件的信息 之前 Propertry prop = New Propertry(); Prop.load(new FileReader()); // 属性 其值在静态代码块获取,这个类在项目启动被加载的时候,读取一次 ...
分类:
其他好文 时间:
2021-03-11 13:15:09
阅读次数:
0
#!/bin/bash #for.sh for i in `cat ./ip.txt`; do ip=`echo $i|awk -F: '{print $1}'` num=`echo $i|awk -F: '{print $2}'` echo $ip sleep 1 echo $num sleep ...
分类:
其他好文 时间:
2021-03-06 14:46:46
阅读次数:
0
首先进行代码审计,可以看到传入一个page值,但值中不可以出现php://, 会被过滤为空, 先说我的思路,这里其实可以通过大小写绕过strstr()函数, 然后php://input 可以读取到来自post的原始数据,就会发现一个可疑的.php文件 读取这个文件就得到了需要的flag 下面将看了大 ...
分类:
Web程序 时间:
2021-03-06 14:12:47
阅读次数:
0
##多实例出现 充分的利用主机资源 拆分数据库,限制单个实例大小 资源隔离,减小相互影响 分担连接数 ##mysql配置文件读取 读取配置文件顺序: /etc/my.cnf /etc/mysql/my.cnf /usr/local/mysql/etc/my.cnf ~/.my.cnf --defau ...
分类:
数据库 时间:
2021-03-05 12:56:30
阅读次数:
0
XML文件读取和写入 package com.example.mvcdemo; import org.dom4j.*; import org.dom4j.io.OutputFormat; import org.dom4j.io.SAXReader; import org.dom4j.io.XMLWr ...
分类:
编程语言 时间:
2021-02-25 12:13:47
阅读次数:
0
检查文件是否存在、可读等等 File file = new File("out.txt") println file.exists() println file.canRead() 向文件写入文本 File file = new File("out.txt") file.write "First l ...
分类:
其他好文 时间:
2021-02-24 13:10:56
阅读次数:
0