Category: J2SE Category

What is CallableStatement? 0

What is CallableStatement?

A java.sql.CallableStatement is used to call stored procedures in a database. A stored procedure is like a function or method in a class, except it lives inside the database. CallableStatement – Can be created...

What is the ResourceBundle class? 0

What is the ResourceBundle class?

The java.util.ResourceBundle class is used to store texts and components that are locale sensitive. ResourceBundle has the subclasses PropertiesResourceBundle and ListResourceBundle. public abstract class ResourceBundle extends Object Resource bundles contain locale-specific objects. When your...

Is JVM platform independent? 0

Is JVM platform independent?

The JVM must be platform dependent to allow your Java to run on the specific platform. A JVM for Windows will translate your Java into different system calls than a JVM for OS X....

What are the disadvantages of using threads? 0

What are the disadvantages of using threads?

Because threads have some of the properties of processes, they are sometimes called lightweight processes. In a process, threads allow multiple executions of streams. This is why thread needs its own stack. An operating...