Billie
Billie

Reputation: 9146

Can't print string on JSP

This is my JSP code:

<%@ 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>
    zerox <% System.out.println("XXX"); %>
</body>
</html>

when I access the file from Tomcat server, it prints zerox instead of zerox XXX.

Why?

Upvotes: 0

Views: 657

Answers (1)

Ramesh Kotha
Ramesh Kotha

Reputation: 8322

System.out.println() prints in server console, Use zerox <%= "XXX" %>

Upvotes: 2

Related Questions