Split String By Length In Java November 13, 2012 String Handling Edit An example on splitting a string after 'n' characters i.e. into chunks with n characters each in Java. Let's Split im... Read More
Stringtokenizer In Java Example November 15, 2012 Java Utilities Edit An example on using java.util.StringTokenizer for counting no.of tokens split by a delimeter, using the methods hasMoreTokens() , nextToke... Read More
Reverse Words In A String In Java October 31, 2012 String Handling Edit Reversing words in a string An example on reversing words not letters, in a string in Java. Example import java.util.*; class Re... Read More
Count Spaces & Characters Other Than Spaces In A String In Java November 04, 2012 String Handling Edit An example logic on counting no.of spaces and characters other than spaces in a String in Java. Example /* Taken from gowtham.gutha... Read More
Reverse Words And Letters In String December 28, 2012 String Handling Edit The following example illustrates reversing words and letters in a string. This is in fact a Google interview question and now it's sol... Read More
7 Ways Of Loading A Jdbc Driver You Might Not Know December 02, 2013 JDBC Edit When I say there are 7 ways of loading a JDBC driver, YES, I am right and you are here for it. Let me show you 7 simple programs, 1 way i... Read More
Autocomplete Html Input Field Using Jsp And Jquery In Five Lines! November 27, 2013 Java Server Pages, JQuery Edit Everyone is fascinated about auto-complete. Right? I think, Are you? Drop in the comment below. Long time I've been connecting JQuery ... Read More
Using Cyclicbarrier In Java With Example October 26, 2013 Concurrency Utilities, Multi Threading Edit Here are general life and real time examples on Cyclic barrier. These examples help you understand Cyclic barrier in the easy way. Somet... Read More
Using Setdividersize() And Setresizeweight() In Jsplitpane November 12, 2013 Swing Components Edit The following example illustrates setting divider size and resize weight that allows you to position split pane at center or where ever y... Read More