I have a simple problem that I can't seem to figure out. I am trying to execute a geoname WebService.search method and keep getting a "java.lang.StringIndexoutOfBoundsException" error. I ran the program under plain old Java and it works fine with no problem. I run it under Android and I get the "java.lang.StringIndexoutOfBoundsException" error. I have "Internet" permissions set in my manifest. The error occurs when the Webservice.search(searchCriteria) is executed. Here is the code:
package fau.edu;
import org.geonames.*;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class MainRoutine extends Activity {
TextView displayObject;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
displayObject = (TextView)findViewById(R.id.TextView01);
try {
String displayString;
//
// Toponomy Search
//
ToponymSearchCriteria searchCriteria = new ToponymSearchCriteria();
searchCriteria.setQ("Miami");
searchCriteria.setFeatureClass(FeatureClass.valueOf("H"));
searchCriteria.setCountryCode("US");
searchCriteria.setAdminCode1("FL");
searchCriteria.setFeatureCode("spng");
WebService.setUserName("******"); // username '*' out for public consumption. Actual code has valid name.
ToponymSearchResult searchResult = WebService.search(searchCriteria);
displayString = null;
for (Toponym toponym : searchResult.getToponyms()) {
displayString += toponym.getName() + " " + toponym.getCountryName() + "\n";
}
displayObject.setText(displayString);
}
catch(Exception e) {
e.printStackTrace();
displayObject.setText("Try Error...\n" + e.toString());
}
}
}
The failure occurs when I execute the WebService.search(searchCriteria) method. The error that I get in LogCat is:
java.lang.StringIndexOutOfBoundsException
at java.lang.String.substring(String.java:1646
at org.jdom.input.SAXHandler.startElement(SAXHandler.java:568)
at org.apache.harmony.xml.ExpatParser.startElement(ExpartParser.java:146)
....
I have correctly put jdom.jar and geonames.-1.0.6.jar in my Java build path, so I don't think there is a problem there. The interesting thing is that have re-written the code to use WebService.postalCodeSearch(postalSearch) and WebService.weatherIcao("KPBI") and it works perfectly in Android with no issues. Like I said, this code runs all day under Java SE6. Any ideas as to what might be wrong?