to be contin...
Tuesday, September 4, 2012
Wednesday, March 14, 2012

It's simple,Create a test programe on eclipse IDE.public class NameArguments { public static void main(String[] args) { System.out.println("First Name " + args[0]); System.out.println("Last Name " + args[1]); }}Goto: Run->Run Configurationsin that window select Arguments tab and give the arguments(only the arguments)Notice that there is at least one space between every two arguments.Then just click Applyexecute the code. output would beFirst...
Wednesday, January 4, 2012
JSP URL Mapping
ADMIN
11:27 PM

Given in the figure below JSP resources reside under subdirectories or directly there in the document root that are accessible directly to users via URL. In order to protect the web resources, behind WEB-INF directory hide the JSP files that provide protection to JSP files, Java Script files, image files, css files (cascading style sheets), pdf files, html files etc, from the direct access. To servlet, a request shall be made as it is responsible for...
Tags
# JSP
Continue Reading