Work發佈博客測試文件 一段java代碼 //1到30數隨機里取7個 public static void main(String[] args) { for (int i = 0; i 測試專用jsp 一些sql代...
Work發佈博客測試文件
一段java代碼
//1到30數隨機里取7個
public static void main(String[] args) {
for (int i = 0; i < 90; i++) {
//int a =(int) (Math.random()*31+20);
Random random = new Random();
random.nextInt(30);
System.out.println(random.nextInt(30));
}
}
一段html代碼
<%@ page language="java" pageEncoding="UTF-8"%>
<html>
<head>
<title>測試專用jsp</title>
<link href="${pageContext.request.contextPath }/css/Style.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="${pageContext.request.contextPath }/script/DatePicker/WdatePicker.js" ></script>
一些sql代碼
#ELecMatter 待辦事宜
create table elecMatter(
matterId varchar(100) primary key,
stationRunStatus text,#站點運行情況
devRunStatus text,# 設備運行情況
createDate date
);
一些cmd命令
C:\Users\udv>cd ..
C:\Users>cd ..
C:\>dir
Volume in drive C has no label.
Volume Serial Number is CAB9-EC6F
Directory of C:\
12/24/Thu 17:50 PM 1,024 .rnd
Xml配置文件
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
一個a標簽
http://blog.csdn.net/zzp_403184692/article/details/8057693