Feed on
Posts
Comments

Archive for the ‘JAVA’ Category

Java compile - Eclipse

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 »

Serialization

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 »

Write thread-safe servlets

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 »

Oops Concept related with java

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 »

Java FAQ’s

Check here about java faqs.

Read Full Post »

javax.servlet.jsp Package

Check here and read about javax.servlet.jsp package

Read Full Post »

« Newer Posts - Older Posts »