Difference between sorted and ordered collection in hibernate
Below are the differences between Sorted collection and Ordered collection in Hibernate. sorted collection order collection A sorted collection is sorting a collection by utilizing the sorting...
View ArticleAvoid nested loops using Collection Framework in Java
It is very important to have high performance for any software implemented in any programming language. And, as per truth loops plays major role in building the high performance applications. In this...
View ArticleAccess Specifiers in Java
An access specifier is a keyword that specifies how to access or read the members of a class or the class itself. There are four access specifiers in Java as mentioned below: private public protected...
View ArticleThreads Interview questions in Java
Thread concept is the most important topic for all the interviews. This post contains most important interview questions on Thread concepts. The answers for these questions will be covered in further...
View ArticleHow to find count of duplicates in a List
There are many different ways to find out the duplicates in a List or count of duplicates in a List object. Three best ways have been implemented in the below sample class. I suggest to go with 2nd...
View ArticleExample program to reverse a Number in Java
package in.javatutorials; public class ReverseNumber { public static void main(String[] args) { System.out.println(“The reversed number is ” + reverse(1234)); } public static int reverse(int input) {...
View ArticleJavac/Java searching algorithm for other classes
With this post, I would like to explain how exactly the Java/Java will search for its dependencies in the project or application level. Java Applications can be run using the command line or in the...
View ArticleBubble Sort Example in JAVA
package in.malliktalksjava; /** * @author malliktalksjava * */ public class BubbleSortExample { private static int[] input = { 4, 2, 9, 6, 23, 11, 44, 0 }; /** * @param args * main method to run the...
View ArticleExample Java Program to Search Files in a Folder
Below Java Program lists the file names and directory names available in given folder. To do this implementation , we can get the files list in a folder using File class available in Java API. Iterate...
View ArticleExample Program: Search Word in Folder files and print output
To Search a word in in list of files available in Folder, you need to find the list of files first and then scan each and every for required word. Below is the sample program to find the a given word...
View Article