import com.alibaba.fastjson.JSON; import org.apache.commons.lang.StringUtils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; ...
分类:
Web程序 时间:
2021-06-25 17:08:46
阅读次数:
0
//冒泡排序,思想就是每个数据与下一个数据一个个对比下去 public static void sort(int[] nums){ if(nums==null||nums.length==0){ return; } for(int i =0;i<nums.length;i++){ for(int j ...
分类:
编程语言 时间:
2021-06-25 16:58:16
阅读次数:
0
requests与Unittest的结合形成自动化测试 py文件1 import json import unittest,requests,parameterized def yun_login(username,password): url = "http://yun.zenm.vip/iot/ ...
分类:
其他好文 时间:
2021-06-25 16:50:40
阅读次数:
0
练习一:随机输入你心中想到的一个名字,然后输出它的字符串长度 Length:可以得字符串长度 using System; namespace 字符串的各种方法 { class Program { static void Main(string[] args) { //练习一:随机输入你心中想到的一个 ...
分类:
其他好文 时间:
2021-06-25 16:48:53
阅读次数:
0
队列的应用场景: 数组模拟队列: package com.model.queue; import java.util.Scanner; /** * @Description:测试类 * @Author: 张紫韩 * @Crete 2021/6/24 20:39 * * 数组模拟队列,并验证 */ p ...
分类:
编程语言 时间:
2021-06-25 16:46:50
阅读次数:
0
1.在settings中开启Cookie COOKIES_ENABLED = True 2.重写 start_requests方法 初始化开始url(方便添加cookie) 列: from scrapy import Request class ASpider(CrawlSpider): name ...
分类:
其他好文 时间:
2021-06-25 16:45:37
阅读次数:
0
首先需要导入 import openpyxl 1、打开excel,并且获取sheet 1 inwb=openpyxl.load_workbook(Path_generate) 2 Sheetnames=inwb.get_sheet_names() 3 ws=inwb.get_sheet_by_nam ...
分类:
编程语言 时间:
2021-06-25 16:43:54
阅读次数:
0
? 静态数据成员 格式: static 数据类型 数据成员 如: static float sum; 静态数据成员为所有同类对象所共享, 属于类对象的集合, 不属于某一对象, 可以用类名访问静态数据成员: 类名::静态数据成员 如: float Student::sum = 0.0; 访问静态数据成 ...
分类:
编程语言 时间:
2021-06-25 16:39:29
阅读次数:
0
import it.bigdata.flink.study.SensorReding import org.apache.flink.api.common.serialization.SimpleStringSchema import org.apache.flink.streaming.api.s ...
分类:
其他好文 时间:
2021-06-25 16:39:11
阅读次数:
0
from urllib.request import urlopen from bs4 import BeautifulSoup as BS url = "http://www.lagou.com" # (1)获取response对象 response = urlopen(url) # (2)获得r ...
分类:
Web程序 时间:
2021-06-25 16:38:55
阅读次数:
0