In jsp we create a string as we does in a java. In jsp we can declare it inside the declaration directive or a scriptlet directive.
The code of the program is given below:
<html>
<head>
<title>How To Create a String</title>
</head>
<body>
<h1>We are creating a String</h1>
<%
String create = "We have create a String";
%>
<h2><%out.println(create);%></h2>
</body>
</html>
|
The output of the program is given below:

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Creating a String View All Comments
Post your Comment