Pages
(Move to ...)
Home
HACKS
GEEKY Fun
About me
▼
Wednesday, 16 March 2016
7 HTML 5 Tags and Attributes you must know!
›
Its been a year and half since I last posted any tips or tutorial so today I decided to post something that currently I am using and learn...
Saturday, 14 June 2014
Introduction to JavaBeans
›
Every Java user interface class is a JavaBeans component. Understanding JavaBeans will help you to learn GUI components.JavaBeans is a soft...
Monday, 9 June 2014
Singleton Design Pattern in java
›
Singleton pattern in Java is one of the most common patterns available and it’s also used heavily in core Java libraries . A java beginn...
Monday, 2 June 2014
What is DatabaseMetaData?
›
DatabaseMetaData is used to know which type of driver we are using and whether is it compatable or JDBC complaint or not. It is used to ...
How to execute any type of query in JDBC?
›
The Statement.execute() method allows us to execute any kind of query like select, update. It returns boolean. If the return value is tru...
Saturday, 24 May 2014
Puzzle 1: Hello, Goodbye
›
This program adds an unusual twist to the usual Hello world program. What does it print? public class HelloGoodbye { public static void...
Extract a zip file using Java
›
import java.io.BufferedOutputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; im...
›
Home
View web version