Enter your keyword

Blog

Java Jndi datasource lookup

JNDI style is typical when using an application server(Weblogic, JBOSS) or a web container(Apache Tomcat). Here’s a example of the lookup Datasource created in Server. import java.sql.Connection;import java.sql.SQLException;import javax.naming.Context;import javax.naming.InitialContext;import […]

Get Current Date using Java

Below code give current date in String. import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.Calendar; public class CurrentDate {    public CurrentDate() {        super();    }     public static void main(String[] args) {        DateFormat dateFormat = […]