1、Windows下 java执行cmd 命令无法关闭tomcat cmd /k D: && cd D:/WindowsETC/ETC_Managent/apache-tomcat/bin && shutdown.bat 2、解决思路: a:想象一下自己在Windows下如何结束进程 b: 首先你得 ...
1、 处理重复数据drop_duplicates函数 #设定一些重复行数据 df.iloc[1] = [0,0,0,0,0,0,0,0] df.iloc[3] = [0,0,0,0,0,0,0,0] df.iloc[5] = [0,0,0,0,0,0,0,0] df.iloc[7] = [0,0,0 ...
分类:
编程语言 时间:
2020-06-29 17:08:43
阅读次数:
72
概述 http 状态码是http 协议中服务端返回给客户度的响应,根据状态码得知请求的情况以及服务端的情况。状态码分为2xx 3xx 4xx 5xx 3xx介绍 3xx 是重定向相关的状态码,通常作为一个中间态。主要有 301 302 303 304 307这几种。其中301 302 是http1. ...
分类:
Web程序 时间:
2020-06-29 13:05:30
阅读次数:
132
1 var twoSum = function(nums, target) { 2 let a = nums.length; 3 while(a > 1) { 4 let last = nums.pop(); //pop出最后一个元素并将返回值赋值给last 5 if (nums.indexOf(t ...
分类:
其他好文 时间:
2020-06-29 00:12:11
阅读次数:
77
import './assets/css/style.css'; const app = document.getElementById('app'); app.innerHTML = ` <div class="todos"> <div class="todos-header"> <h3 clas ...
分类:
编程语言 时间:
2020-06-28 22:33:52
阅读次数:
62
参考资料 https://www.freecodecamp.org/news/ https://kb.kutu66.com/tag/javascript https://t.codebug.vip/ https://javascript-conference.com/blog/ https://ww ...
分类:
其他好文 时间:
2020-06-28 18:52:35
阅读次数:
214
FTP,(File Transfer Protocol),就是文件传输协议。用于互联网双向传输,控制文件下载空间在服务器复制文件从本地计算机或本地上传文件复制到服务器上的空间。 因为有一个奇葩的需求,客户要求把一个服务器的文件拷贝到另一个服务器还要求用ftp。所以研究了一番ftp. using Sy ...
分类:
其他好文 时间:
2020-06-28 15:02:01
阅读次数:
56
import time start_time=time.time() for a in range(0,1001): for b in range(0,1001): c=1000-a-b if a**2+b**2==c**2: print("a,b,c:%d,%d,%d"%(a,b,c)) end_ ...
分类:
编程语言 时间:
2020-06-26 20:34:18
阅读次数:
58
1.Install-package npoi; 2.Add necessary namespace as below. using System.IO;using System.IO.Compression;using NPOI.HSSF.UserModel;using NPOI.SS.UserMo ...
一、简单聚合 1.1 数据准备 // 需要导入 spark sql 内置的函数包 import org.apache.spark.sql.functions._ val spark = SparkSession.builder().appName("aggregations").master("lo ...
分类:
数据库 时间:
2020-06-26 18:03:35
阅读次数:
58