Java-Tutorials
Java Tutorials - Best Java Tutorials Directory. Java is a portable object-oriented language developed by Sun Microsystems. Originally used mostly for web programming, it is now used primarily to develop large web-based applications. Find tutorials, example codes about Sun Java Technology. |
|
|
|
Java-Tutorials
|
Multithreading in Java
Multithreading in java is running multiple threads sharing same address space concurrently. A multithreaded program has two or more parts running simultaneously. Each part is called a thread and has a separate path of execution. Multithreading allows a process to run its tasks in parallel mode and execute these different tasks simultaneously.
View Rating |
|
|
Java-Tutorials
|
Collections in Java
Collections in Java are data-structures primarily defined through a set of classes and interface and used by Java professionals. Some collections in Java that are defined in Java collection framework are: Vectors, ArrayList, HashMap, LinkedList, Stack and Hashtable. Collection Interface is used to circulate through these collections of objects.
View Rating |
|
|
Java-Tutorials
|
Hibernate Tutorial
This section contains the various aspects of Hibernate. Here we will read What is hibernate ?, Features of Hibernate, Compatibility with the various databases, Hibernate dialect of various databases, Architecture of Hibernate, How to download hibernate ?, Hibernate Versions etc.
View Rating |
|
|
Java-Tutorials
|
Java Abstract Class Example
Abstract class in Java is a class which is created for abstracting the behaviour of classes from the outside environment. Abstract class can be created using 'abstract' keyword. An abstract class may contain abstract as well as non-abstract methods.
View Rating |
|
|
Java-Tutorials
|
Java Word Occurrence Example
This example explains you that how you can count the occurrences of each word in a file. In this example we will use the HashMap for putting and getting the values. This program takes the file name from command line which returns the number of occurrences of each word separated by a single white space. In this example I have used the java.io and java.util packages.
View Rating |
|
|
Java-Tutorials
|
Java Method Return Multiple Values
This example explains you how a multiple values can be return by a method. This example explains you all the steps required in to return multiple values in Java. In this example you will see how we can return multiple values using the return statement.
View Rating |
|
|