繁体   English   中英

N维点类

[英]N-Dimensional Point Class

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 from数据库?

只需执行以下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);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM