Get Oracle DB connection using Oracle driver
Here is an example to connect Oracle DB using Oracle driver. 1) Download Oracle JDBC Driver Download Oracle JDBC Driver from here 2) set classpath of the above jar 3) […]
- Ankur Jain
- 0
- 1282
- August 27, 2015
Difference between Sun JDK And Oracle JRockit
This is very important to know, which jdk is better than and which one to use. Below are some basic difference between Sun JDK and Oracle JRockit. As we know, […]
- Ankur Jain
- 0
- 2480
- August 27, 2015
Map Interface in Java
import java.util.HashMap;import java.util.Iterator;import java.util.Map;import java.util.Map.Entry;import java.util.Set; public class MapImplementation { public MapImplementation() { super(); } public static void main(String args[]){ Map<Integer,String> map = new HashMap<Integer,String>(); // Addition of […]
- Ankur Jain
- 0
- 1414
- August 27, 2015
Use of list, add elements and iterate
import java.util.ArrayList; import java.util.Iterator; import java.util.List; public class ListImplementation { public ListImplementation() { super(); } public static void […]
- Ankur Jain
- 0
- 1133
- August 4, 2015