
how to create an excel file using java

package com.otts.constants;
public class Constants {
public static String DRIVERNAME = "oracle.jdbc.driver.OracleDriver";
public static String SERVERNAME = "172.24.137.30";
public static String PORTNUMBER = "1521";
public static String SID = "ora10G";
public static String URL = "jdbc:oracle:thin:@" + SERVERNAME + ":"
+ PORTNUMBER + ":" + SID;
public static String USERNAME = "e";
public static String PASSWORD = "";
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.