-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleft.jsp
More file actions
40 lines (38 loc) · 1021 Bytes
/
left.jsp
File metadata and controls
40 lines (38 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<%@page import="java.io.IOException"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="flags.Access" %>
<%@ page import="servlet.MainServlet" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<%
boolean go = false;
Access.setGoF();
//long start = System.currentTimeMillis();
while (go!=true){
go = Access.getGo();
try{
Thread.sleep(10);
}catch (InterruptedException e){}
//System.err.println(go);
}
//long stop = System.currentTimeMillis();
//long times = (stop-start)/1000;
System.out.println("検索終了");
for (int i=0;i<MainServlet.Url.size();i++){
%>
<font size="1">
<a href=<%=MainServlet.Url.get(i).toString() %> target=_brank><%=i+1 %>.<%=MainServlet.Title.get(i).toString() %></a>
<br>
<%=MainServlet.Summary.get(i).toString() %>
</font>
<hr>
<%
}
%>
</body>
</html>