This is Java class:
package com.example;
import java.util.ArrayList;
public class sample {
public void print() {
ArrayList<String> l = new ArrayList<String>();
l.add("a");
l.add("b");
}
}
This is my Jsp page :
<%@page import="java.awt.List"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ page import="com.example.sample"%>
<%@page import="java.util.*"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<%
sample s = new sample();
%>
</body>
</html>
I dont know how to call print merhod and how Print list in jsp page so that i print data in jsp page list please help me how i will Implement i am learning this.