Posted in JAVA on February 28, 2008 | No Comments »
Could not find the main class. Program will exit.”
Problem : I just installed the latest available Eclipse version (3.2 milestone 5) and couldn’t run my ANT builds anymore. The error I got in the alert box was “Could not find the main class. Program will exit”.
Read Full Post »
Posted in JAVA on February 21, 2008 | No Comments »
Overview of Serialization
Serialization is the process of writing complete state of java object into output stream, that stream can be file or byte array or stream associated with TCP/IP socket.
Deserialization is the process of reading back that serialized java object stream from input stream.
Read Full Post »
Posted in J2EE, JAVA, JSP, Servlet on February 21, 2008 | No Comments »
A thread is a single execution process; in other words, an individual, sequential flow of control within a program. When we say that a program is multi-threaded, we are not implying that the program runs two separate instances simultaneously (as if you concurrently executed the program twice from the command line). Rather, we are saying [...]
Read Full Post »
Posted in JAVA on February 20, 2008 | 1 Comment »
Object oriented programming related with java as it satisfies all the three oops concepts that are :
1.inheritance
2.polymorphism
3.encapsulation
Read Full Post »
Posted in JAVA on February 20, 2008 | No Comments »
Check here about java faqs.
Read Full Post »
Posted in JAVA, JSP, Servlet on February 18, 2008 | No Comments »
Check here and read about javax.servlet.jsp package
Read Full Post »