Package aaaa;
Import Java.io.printStream;
Public Class A
{
Public Void B (String S)
{
System.out.println (s);
}
}
This is compiled, generate a.class
Then I call in the JSP page:
<% A.B ("DDDDD");%>
Tomcat does not show any errors
But it is not available to DDDD string output, why?