public final class Point {
private List<Double> instance;
public Point(List<Double> instance) {
this.instance=instance;
this.setI(instance);
}
public void setI(List<Double> instance) {
this.instance = instance;
}
public List<Double> getI() {
return this.instance;
}
protected static Point getPoint(List<Double> Instance)throws SQLException {
List<Double> instance=Instance;
return new Point(instance);
}
protected static List getPoints()throws SQLException {
ResultSet rs;
List points = new ArrayList();
List x = new ArrayList();
int rowCount = 0;
String query1 = "Select count(*) from website;";
Connection conn = Connection2 .getConnection("localhost", "1433", "trafficwebsite", "KEREM", "keremgulmaths");
ResultSet rs1 = Connection3.getTableDataForQuery(query1, conn);
while (rs1.next()) {
rowCount = rs1.getInt(1); }
if (conn != null) {
String query = "SELECT*FROM website";
rs = Connection3.getTableDataForQuery(query, conn);
ResultSetMetaData rsmd=rs.getMetaData();
//rowCount = getRowCount(rs);
while (rs1.next()) {
rowCount = rs1.getInt(1); }
if (rowCount > 0)
{ points = new ArrayList(rowCount);
for(int i = 0; i < rowCount; i++) {
rs.next();
x.add(rsmd.getColumnName(i));
points.add(getPoint(x));
}
} System.out.println(points);
}
return points;
}
public static void main(String[] args) throws SQLException{
List<Double> data=new ArrayList();
data=Point.getPoints();
System.out.println("Data: "+data);
}}
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: -1
at com.microsoft.sqlserver.jdbc.SQLServerResultSet.getColumn(SQLServerResultSet.java:695)
at com.microsoft.sqlserver.jdbc.SQLServerResultSetMetaData.getColumnName(SQLServerResultSetMetaData.java:103)
at n.dimensional.point.Point.getPoints(Point.java:79)
at n.dimensional.point.Point.main(Point.java:95)
Java结果:1
这个问题是如何解决的?
如何将数据分配给从数据库获取的Point?
答案 0 :(得分:0)
getPoints
如下所示就足够了:
protected static List<Double> getPoints() throws SQLException {
List<Double> points = new ArrayList<>();
if (conn != null) {
String query = "SELECT point FROM website"; // point ?
try (PreparedStatement stm = conn.prepareStatement(query);
ResultSet rs = stm.executeQuery()) {
while (rs.next()) {
points.add(rs.getDouble(1));
}
}
}
return points;
}
这简化了查询。传递的rsmd.getColumnName(i)
不是基于1的列号,而是基于0的行索引。
try-with-resources try (DECLARATIONS) { ... }
确保声明的变量始终关闭。
SELECT *
是一种浪费,通常需要按特定顺序进行数据库列定义。
小费:
public List<Double> getI() {
return Collections.unmodifiableList(instance);
}
然后通过修改返回的列表无法更改原始的Point对象。
public static void main(String[] args) throws SQLException {
List<Double> data = Point.getPoints();
Point pt = new Point(data);
System.out.println("Data: "+data);
}