概况 启动不带参数线程的方法 启动带参数线程的方法 线程更新UI 线程锁同步共享数据 启动不带参数线程的方法 第一种快速启动 1 2 3 4 Thread t = new Thread(()=>{ //下面写一些在线程中处理的方法 }); t.Start(); 第二种启动方法 1 2 3 4 5 6 ...
分类:
编程语言 时间:
2021-05-24 10:51:20
阅读次数:
0
谷歌地球 https://www.google.com/earth/ 谷歌地球(Google Earth,GE)是一款谷歌公司开发的虚拟地球软件,Google Earth来源于Keyhole(锁眼)公司自家原有的旗舰软件。在Google Earth Pro通过拖动时光机功能可以查看不同时期的历史数据 ...
分类:
其他好文 时间:
2021-05-24 09:52:40
阅读次数:
0
表单 input标签中都要写上name养成习惯 表单form中必须要写的是action和method action:是表单提交的位置,可以是网站或者是一个请求处理地址 method:只有post和get两种提交方式 表单的元素:文本框、单选框、多选框、下拉框(列表框)、文本域、文件域、搜索框、简单验 ...
分类:
Web程序 时间:
2021-05-24 09:46:29
阅读次数:
0
方法一: <input type="text" autocomplete="off" name="test" /> 方法二: 在 input 所在的form标签中添加 <form action="#" autocomplete="off"> <input type="text" autocomple ...
分类:
Web程序 时间:
2021-05-24 08:42:55
阅读次数:
0
tomcat简介 Tomcat是Apache 软件基金会(Apache Software Foundation)的Jakarta 项目中的一个核心项目,由Apache、Sun 和其他一些公司及个人共同开发而成。由于有了Sun 的参与和支持,最新的Servlet 和JSP 规范总是能在Tomcat 中 ...
分类:
其他好文 时间:
2021-05-24 08:41:40
阅读次数:
0
Spring Security 入门(基本使用) 这几天看了下b站关于 spring security 的学习视频,不得不说 spring security 有点复杂,脑袋有点懵懵的,在此整理下学习内容。 1、入门 1.1、什么是 spring security spring security 是一 ...
分类:
编程语言 时间:
2021-05-24 08:31:15
阅读次数:
0
1 <html> 2 <head> 3 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 4 <title>Reg</title> 5 <style> 6 .state1{ 7 color:#aaa; 8 } 9 ...
分类:
Web程序 时间:
2021-05-24 06:16:05
阅读次数:
0
文件上传 1.前端加入表单 <form method="POST" , action = "/Upload", enctype="multipart/form-data"> <input type="file", name = "file"/><br> <input type="submit", v ...
分类:
Web程序 时间:
2021-05-24 05:55:31
阅读次数:
0
一、使用Apache ab模拟并发压测 1、压测工具介绍 $ ab -n 100 -c 100 http://www.baidu.com/ -n表示发出100个请求,-c模拟100个并发,相当是100个人同时访问。 还可以这样写: $ ab -t 60 -c 100 http://www.baidu ...
分类:
编程语言 时间:
2021-05-24 05:16:43
阅读次数:
0
一.前端 1.jsp展示数据 (1)展示在前端控制台 console.table(参数); (2)弹窗 alert(参数); (3)JSLT的<c:if>标签:https://www.cnblogs.com/saoge/p/14682521.html <c:if test="判断条件,使用EL表达式 ...