Friday, September 30, 2011

JSP -- Brief


Thursday, September 29, 2011

JNDI --- Java Naming and Directory Interface

It is an API that is used by java programs to interact with any naming service and directory service that implements JNDI.

Tuesday, September 20, 2011

Java Bits -1

--> Importing packages doesnot recursively import subpackages

-->
Unicode characters can appear anywhere in the source code. The following code is valid.


ch\u0061r a = 'a';

char \u0062 = 'b';

char c = '\u0063';

·