2016-09-14 17 views
0

このエラーは部分文字列メソッドでスローされていますが、この問題を扱う多くのスレッドが見つかりましたが、問題が異なるようです。 。文字列は、あなたのサブ(開始、終了)のサイズよりも短いですが、何をしてもメソッド呼び出しに渡される前に、このエラーがスローされObscure 'StringIndexOutOfBoundsException "

私はHibernateの基準を実行している:

public static List<Object[]> baseQuery() throws HibernateException{ 
    Session session = getSession(); 
    Criteria criteria = session.createCriteria(CsvDataEntity.class); 
    ProjectionList projectionList = Projections.projectionList(); 
    projectionList.add(Projections.property("clearanceMainCat")); 
    projectionList.add(Projections.property("clearanceDt")); 
    projectionList.add(Projections.property("vertRadians")); 
    projectionList.add(Projections.property("latitude")); 
    criteria.setProjection(projectionList); 

    List<Object[]> list = criteria.list(); 
    return list; 
    } 

その後、私は」ここでクエリを使用しています:

List<Object[]> fullList = baseQuery(); 
    String address = "400 Pine St, Seattle, WA 98101"; 
    String distance = "1"; 
    String years = "8"; 

    //create 'context' for GoogleMaps GeoCode API, geocode user-defined address 
    GeoApiContext context = new GeoApiContext().setApiKey("Foobar"); 
    GeocodingResult[] result = geocode(context, address).await(); 
    Geometry coordinates = result[0].geometry; 

    //store user request lat & lng from address supplied from form 
    double longitude = coordinates.location.lng; 
    double latitude = coordinates.location.lat; 

    //user requested distance 
    double requestedDistanceInMiles = Double.parseDouble(distance); 

    //list to store all the crimes within the specified distance 
    List<CrimeModel> crimeList = new ArrayList<>(); 

    for (Object[] record : fullList) { 

     //verifying crime was commmitted within user-defined distance 
     Boolean withinDistance = false; 
     double rowLng = Double.parseDouble((String)record[2]); 
     double rowLat = Double.parseDouble((String)record[3]); 
     double milesBetween =  (haversineDistance(latitude,rowLat,longitude,rowLng,0,0))/1609.34; 

     if (milesBetween <= requestedDistanceInMiles) { 
      withinDistance = true; 
     } 

     //verifying crime was committed within user-defined time-range 
     Boolean withinTimeRange =false; 
     double requestedYears = Double.parseDouble(years); 
     long requestedDays = Math.round(requestedYears * 365); 
     String objectDate = (String) record[1]; 
     String recordDateAsString = objectDate.substring(0, 10); 

クエリが機能し、10文字以上の日付+時刻文字列が返されました。変わったことは、私は4行目にブレークポイントを置いてデバッグし、クエリは正常に実行されましたが、substring()が呼び出されたスニペットの一番下にエラーがスローされます。つまり、Stringは必要な長さにする必要がありますが、このエラーが発生する前に渡されることさえありません。それが実行されていないときになぜこれがスローされるのか誰にも分かりますか?私はSpring MVCでこれを実行していますが、これは奇妙な状況が発生すると思う唯一のものです。ありがとう。

+2

スタックトレースを追加してください。あなたのバグの問題に加えて、抽象概念の**単一の原理**について読んでください。あなたのコードはそのメリットがあります。ああ、それは大変です。 – GhostCat

+0

** fullList **の値を投稿できますか? –

+1

「objectDate」の値を投稿してください –

答えて

1

@David Wallaceのように、データベースが非常に大きいため、不足しているレコードがあり、クエリからデータが読み込まれた後にエラーがスローされました。私はそれらをスキップするための簡単な処理を行いました(レコードの欠落のためにクエリの4つの列すべてを処理する必要がありました)、すべて正常に動作します。

  //skip null records in database 
      if (objectDate.length() < 10) { 
       continue; 
      } else { 
       recordDateAsString = objectDate.substring(0, 10); 
      } 
関連する問題