Tag: Java
Java AWT and Swing Based Calculator Program with GUI
Posted by M. Saqib | Sep 9, 2008 | Java: Java Programming Concepts |
A simple Java Calculator UI developed using Java AWT and Swing.
Read MoreString Sorting in Java
Posted by M. Saqib | Sep 9, 2008 | Java: Java Programming Concepts |
This is a sample Java program to demonstrate string sorting. The function uses a space character as a separator between words. It iterates through each word in the input string and creates a words[] array. Finally it sorts the array of the words in ascending order of the letters i.e. a->z and displays the sorted array by printing one word at each line.
Read MoreDouble buffering in Swing – Java
Posted by M. Saqib | Sep 9, 2008 | Java: Java Programming Concepts |