0
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

この問題はどのように解決されますか?

データベースから取得したポイントにデータがどのように割り当てられますか?

4

1 に答える 1

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-resourcestry (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);
}
于 2015-12-19T00:37:53.413 に答える