javaWeb 의 jsp (1) 출력 hello world

4262 단어 javaWeb
out. println () 사용
이 곳 에서 정의 하 는 str 는 jsp 부분 변수 입 니 다.
"java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
    String str = "hello world";
        out.println(str);
    %>
body>
html>

그 중 < body > 체 내 에 소 포 를 사용 하 는 것 은 jsp 코드 입 니 다.
jap 성명 사용
전역 변수
"java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
    String str = "hello world"; 
    %>
    
body>
html>

jsp 표현 식
jsp 표현 식 은 자바 문법 에 맞 는 표현 식 으로 자바 표현 식 의 값 을 문자열 로 직접 출력 할 수 있 습 니 다.
"java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
    jsp表达式"hello word" %>
    String str = "hello world"; 
    %>
    String str = "hello world";
        out.println(str);
    %>
body>
html>

좋은 웹페이지 즐겨찾기