본문 바로가기

Learning/JSP

객체와 메소드를 이용하여 JSP 성적 출력하기 (자바 파일: 생성자를 이용하여 값 할당)

 

 

 

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
41
42
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
    function test(){
        if(document.getElementById("name").value==""){
            alert("이름을 입력하세요");
            return;
        }
        if(document.getElementById("kor").value==""
                ||isNaN(document.getElementById("kor").value)){
            alert("국어성적을 입력하세요"); //isNaN: 문자인지 아닌지 판별
            return;
        }
        if(document.getElementById("eng").value==""
                ||isNaN(document.getElementById("kor").value)){
            alert("영어성적을 입력하세요");
            return;
        }
        if(document.getElementById("math").value==""
                ||isNaN(document.getElementById("kor").value)){
            alert("수학성적을 입력하세요");
            return;
        }
        document.getElementById("frm").submit();
    }
</script>
</head>
<body>
<form action="scoreResult3.jsp" id="frm">
이름: <input type="text" name="name" id="name"><br>
국어: <input type="text" name="kor" id="kor"><br>
영어: <input type="text" name="eng" id="eng"><br>
수학: <input type="text" name="math" id="math"><br>
<input type="button" value="전송" onclick="test()">
</form>
</body>
</html>
cs

 

 

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
<%@page import="com.exam.ScoreBean3"%>
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<%
    request.setCharacterEncoding("utf-8");
    String name=request.getParameter("name");
    int kor=Integer.parseInt(request.getParameter("kor"));
    int eng=Integer.parseInt(request.getParameter("eng"));
    int math=Integer.parseInt(request.getParameter("math"));
    ScoreBean3 sb=new ScoreBean3(name,kor,eng,math); //생성자를 이용하여 값 할당
    
%>
</head>
<body>
<!-- scoreResult3.jsp -->
scoreResult3.jsp<br>
이름: <%=sb.getName() %><br>
국어: <%=sb.getKor() %><br>
영어: <%=sb.getEng() %><br>
수학: <%=sb.getMath() %><br>
총점: <%=sb.getTot() %><br>
평균: <%=sb.getAvg() %><br>
학점: <%=sb.getGrade() %>
</body>
</html>
cs

 

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
41
42
43
44
45
46
47
48
package com.exam;
 
public class ScoreBean3 {
    private String name;
    private int kor;
    private int eng;
    private int math;
    
    //getter
    public String getName() {
        return name;
    }
    public int getKor() {
        return kor;
    }
    public int getEng() {
        return eng;
    }
    public int getMath() {
        return math;
    }
    
    //생성자 source-Generate Constructor using Fields...
    public ScoreBean3(String name, int kor, int eng, int math) {
        super();
        this.name = name;
        this.kor = kor;
        this.eng = eng;
        this.math = math;
    }
    public int getTot() {
        return (kor+eng+math);
    }
    public int getAvg() {
        return (kor+eng+math)/3;
    }
    public String getGrade() {
        String grade="";
        switch((kor+eng+math)/3/10) {
            case 10:
            case 9: grade="A학점"break;
            case 8: grade="B학점"break;
            case 7: grade="C학점"break;
            default: grade="F학점"break;
        }
        return grade;
    }
}
cs