Blog Detail
Java Interview FAQs
http://java-interview-faqs.blogspot.com/
This is a blog about Java technology. This contains posts related to Java. Covers many practical interview questions and has many handy examples for Java developers to use.
Recent Posts
java.sql.SQLException: Invalid column index
I have seen many beginners asking this question and searching on google thatI am getting below exception, while running a Java Database Connectivity (JDBC) query. I have checked my query its working fine when I run directly from a SQL client. What co...
Playing with Java String Split Function Basics
This is a post for java beginners who are struggling on the String split() method. I have seen many students wondering about how to split the string in java with the help of split() method.In this post I am trying to show some simple exercises which ...
Playing with Java String Trim Basics
This is a post for java beginners who are struggling on the String trim() method. I have seen many students wondering about how to use the Java String trim method.Here I am trying to show some simple exercises which can be used for learning and under...
How can I leverage the java.util.concurrent BlockingQueue?
Java's concurrent package is very powerful and many people have not really utilized it to the fullest yet. I am trying to take a simple example to demonstrate how we can leverage this powerful implementation. Here is a brief description about Blockin...
Dealing with different Client Browsers at Java Server side - playing with user-agent
Finding out what Browser type user is using is always required in web based application. Now when there are just too many browsers floating around you can not rely on single browser support.Many client side frameworks have come to take care of client...
Java Collection Utility methods - Trim/notNull for Collection
Similar to the trim utility method for Array. below is another simple but useful Java Collection Utility/Util method, which can be used to trim/remove all null Object values in a Collection object. Doing this would eliminate a null check on every ele...

