스크립트
<!-- JSP -->
<%@page import="java.text.SimpleDateFormat"%>
<%@page import="java.util.Date"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8" %>
<!-- -->
<%!
int i =1; //
// , , java
public void print() {
}
/*
*/
public String convertDateToString(String pattern,Date crrentDate) {
//
SimpleDateFormat fmt = new SimpleDateFormat(pattern);
return fmt.format(crrentDate);
}
%>
<!-- -->
<%
int i =2;
%>
<!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">
<title>Insert title here</title>
</head>
<body>
<%
SimpleDateFormat fmt = new SimpleDateFormat("yyyy MM dd ");
%>
<!-- -->
<%=fmt.format(new Date()) %>
<!-- -->
<%=convertDateToString("yyyy/MM/dd", new Date()) %>
<%=convertDateToString("yyyy-MM-dd HH:mm:ss", new Date()) %>
</body>
</html>
/JSP_Base/WebContent/homework.jsp:
<%@page import="java.util.ArrayList"%>
<%@page import="java.util.List"%>
<%@page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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">
<title>Insert title here</title>
</head>
<body>
<%-- 1 --%>
<%
// List
List<String> lst = new ArrayList<String>();
for(int i=1;i<11;i++) {
lst.add(" "+i+" ");
}
out.print(" <br/>");
//
for(String value : lst) {
out.print(value+"<br/>");
}
%>
<br/>
<%-- 2( ) --%>
<%
//
String[] names = {" "," "," "};
//
int[] scores = {60,70,85};
// out.print();
for(int i = 0; i<names.length ; i++) {
out.print(names[i]+": "+scores[i]+" <br/>");
}
%>
</body>
</html>
***번호 생일 캡처:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!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">
<title>Insert title here</title>
</head>
<body>
<%
String idcard = "500225198812121814";
String id = idcard.substring(6, 14);
//
String year = id.substring(0,4);
//
String month = id.substring(4,6);
//
String day = id.substring(6,8);
String date = year+"-"+month+"-"+day;
out.print(" :"+date);
%>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
대상 집합list 대상 시간에 따라 정렬한 가지 방법만 사용자 정의하면 됩니다. 예는 다음과 같습니다. 정렬 방법 클래스/*** 정렬 알고리즘은 이 방법을 호출하여 역순서를 할 수 있습니다.순서 * @param list 정렬할 List * @param m...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.