码迷,mamicode.com
首页 >  
搜索关键字:5 ace acceptor connector proactor异步框架    ( 22408个结果
c++简单随机数
#include<iostream> #include<ctime> #include<cstdlib> using namespace std; int random(int n) { return (long long)rand()*rand%n; } int main() { srand(un ...
分类:编程语言   时间:2021-05-04 16:26:28    阅读次数:0
生成动态验证码
1)编写工具类 package com.icucoder.util; import javax.imageio.ImageIO; import java.awt.*; import java.awt.image.BufferedImage; import java.io.IOException; i ...
分类:其他好文   时间:2021-05-04 15:38:48    阅读次数:0
Django接收post前端返回的json格式数据代码实现
post接收字符串 def subscription(request): msg = request.POST.get('msg') # tel_no = request.POST.get('tel_no') # email = request.POST.get('email') # ico_id ...
分类:Web程序   时间:2021-05-03 12:45:35    阅读次数:0
VS2017 配置 Visual Studio Emulator for Android
Ø 简介 本文介绍使用 VS2017 配置 Visual Studio Emulator for Android 的模拟器,Windows 环境为:Windows 10 专业版(版本号:1803),开发环境为:Visual Studio 2017(企业版:15.9.11) 1. 开启 Hyper-V ...
分类:移动开发   时间:2021-05-03 12:36:34    阅读次数:0
java字符缓冲流复制文件
import java.io.*; //复制文件 public class BufferStream1 { public static void main(String[] args) throws IOException { BufferedReader bufferedReader = new ...
分类:编程语言   时间:2021-05-03 12:34:10    阅读次数:0
java的file创建文件/夹
import java.io.File; import java.io.IOException; public class FileDemo2 { public static void main(String[] args) throws IOException { //1.创建文件 File fi ...
分类:编程语言   时间:2021-05-03 12:20:19    阅读次数:0
CSP202104-2领域均值
思路清晰就好,不是很难只是有点复杂。 #include<bits/stdc++.h> #define atest using namespace std; int n,l,r,t; int mapp[601][601]; int main(){ cin>>n; cin>>l; cin>>r; cin ...
分类:其他好文   时间:2021-05-03 11:58:33    阅读次数:0
⑨.tomcat性能优化
压力测试工具 jmeter http stree 硬件测试 mysqlslap 数据库压力测试工具 ####tomcat配置参数优化 #####1.注释8009 <!-- <Connector protocol="AJP/1.3" address="::1" port="8009" redirect ...
分类:其他好文   时间:2021-04-30 12:13:59    阅读次数:0
计算几何小结
计算几何小结 向量线段相关 点积: \(a.x*b.x+a.y*b.y\) 叉积: \(a.x*b.y-a.y*b.x\) 转角公式: 逆时针旋转角度$B$ 原:\((cosAr,sinAr)\) 现:\((cos(A+B)r,sin(A+B)r)=((cosAcosB-sinAsinB)r,(si ...
分类:其他好文   时间:2021-04-30 11:54:51    阅读次数:0
vue打包部署tomcat
前端vue项目打包build之后,把生成的dist里面的文件全选复制一份 在tomcat的webapps文件夹下,新建一个项目文件,把复制的内容粘贴进去 如果有需要的话,在conf文件夹下的server.xml的下添加配置指定访问路径 在Connector标签中配置端口号 ...
分类:其他好文   时间:2021-04-29 11:57:27    阅读次数:0
22408条   上一页 1 ... 13 14 15 16 17 ... 2241 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!