有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java NDimensional点类

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

这个问题是如何解决的

如何将数据分配到从数据库获取数据的点


共 (1) 个答案

  1. # 1 楼答案

    这样做就足够了,如下所示:

    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-resourcestry (DECLARATIONS) { ... }确保声明的变量始终是闭合的

    SELECT *是一种浪费,通常需要按特定顺序定义数据库列

    小贴士:

    public List<Double> getI()  {
        return Collections.unmodifiableList(instance);
    }
    

    然后,无法通过修改返回的列表来更改原始点对象


    public static void main(String[] args) throws SQLException {
        List<Double> data = Point.getPoints();
        Point pt = new Point(data);
        System.out.println("Data: "+data);
    }