I'm trying to read an integer from an Excel file like this:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
String myExcel = "jdbc:odbc:Driver={Microsoft Excel Driver (*.xls)};DBQ="";" +
"DriverID=22;READONLY=false";
con = DriverManager.getConnection(myExcel);
stmt = con.createStatement();
rs = stmt.executeQuery("select * from [users$] where userid=" + userid);
while(rs.next()) {
System.out.println(rs.getString("phone"));
}
The problem: if we assume the phone in the Excel sheet = 123456, rs.getString("phone") returns the integer with decimal 0, like this "123456.0"
I know I can use rs.getInt("phone") instead, but the phone sometimes have characters like "+","#",etc.
What's the best way to use rs.getString to get integer as it is??
You would have to read the phone number as a string and then parse it to get rid of unwanted characters. Finally, convert it to an int
using Integer.parseInt(phoneNumberString)
.