give me a java code snippet to connect Microsoft excel
through.... I am trying alot... plz help me.
Answer Posted / amar
import java.util.*;
import java.sql.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class Connect extends HttpServlet
{
public void service(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException
{
response.setContentType("text/html");
PrintWriter out = response.getWriter();
Connection con=null;
Statement st=null;
PreparedStatement pst=null;
ResultSet rs;
try
{
Class.forName
("sun.jdbc.odbc.JdbcOdbcDriver");
con=DriverManager.getConnection
("jdbc:odbc:Std","","");
st=con.createStatement();
rs=st.executeQuery("select * from
[ExcelSheetName$]");
while(rs.next())
{
out.println(rs.getString
(1));
out.println(rs.getString
(2));
out.println(rs.getString
(3));
}
}
catch(Exception e)
{
System.out.println("Errr :"+e);
}
}
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What is a JDBC 2.0 DataSource?
Explain the locking system in jdbc & its types?
Explain the necessary steps to connect to the database in java?
What is type 4 jdbc driver?
Explain the difference between rowset vs. Resultset in jdbc?
What is jdbc explain?
How to use JDBC to connect Microsoft Access?
java based application for hospital management
What is two-phase commit in the database?
Define preparedstatement.
How can I know when I reach the last record in a table, since JDBC doesn't provide an EOF method?
What is the difference between jdbc and odbc?
How to get the Database server details in java program?
How do I insert an image file (or other raw data) into a database?
Explain the process of creating tables using NetBeans IDE?