我和机器人应用程序有这种问题
我为此挣扎了一段时间, 经历了许多相似的线索, 但从未真正解决它。 我还没有设法重建崩溃的自我, 但我得到了来自其他用户的崩溃报告 。
<% 1\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
java.lang.NumberFormatException: -
at org.apache.harmony.luni.util.FloatingPointParser.initialParse(FloatingPointParser.java:149)
at org.apache.harmony.luni.util.FloatingPointParser.parseDouble(FloatingPointParser.java:281)
at java.lang.Double.parseDouble(Double.java:318)
at polis.koll.HelloMapView.loadallmarkers(HelloMapView.java:665)
at polis.koll.HelloMapView.access$10(HelloMapView.java:611)
at polis.koll.HelloMapView$6.run(HelloMapView.java:587)
at java.lang.Thread.run(Thread.java:1027)
"强" 这是我的代码, "/强"最后一行似乎是 产生错误的一行
SAXParserFactory spf = SAXParserFactory.newInstance();
SAXParser sp = spf.newSAXParser();
XMLReader xr = sp.getXMLReader();
/** Send URL to parse XML Tags */
URL sourceUrl = new URL(
"http://www.mysite.com/xml.php");
/** Create handler to handle XML Tags ( extends DefaultHandler ) */
MyXMLHandler myXMLHandler = new MyXMLHandler();
xr.setContentHandler(myXMLHandler);
xr.parse(new InputSource(sourceUrl.openStream()));
} catch (Exception e) {
//System.out.println("XML Pasing Excpetion = " + e);
}
sitesList = MyXMLHandler.sitesList;
gotsnr = "";
gotmarkers = 0;
LocationOverlay locationOverlay = new LocationOverlay(mapView, getResources().getDrawable(R.drawable.polis), mContext);
if (sitesList !=null){
for (int i = 0; i < sitesList.getSnr().size(); i++) {
gotsnr = sitesList.getSnr().get(i);
gotmarkers = (i);
//if (gotsnr !=""){
if (sitesList.getLat().get(i).equalsIgnoreCase("")||sitesList.getLat().get(i).equalsIgnoreCase(null)){
// Empty, do nothing
} else{
GeoPoint point = new GeoPoint( new Double(Double.parseDouble(sitesList.getLat().get(i)) * 1e6).intValue() , new Double(Double.parseDouble(sitesList.getLng().get(i)) * 1e6).intValue());
以下编辑为@kcoppock@kcoppock
这能行得通吗?
double dlat = 0;
double dlng = 0;
if (sitesList.getLat().get(i) !=null && !"".equals(sitesList.getLat().get(i)) ){
try {
dlat = Double.parseDouble(sitesList.getLat().get(i));
} catch (NumberFormatException e) {
//System.out.println(e.getMessage());
}
}
if (sitesList.getLng().get(i) !=null && !"".equals(sitesList.getLng().get(i)) ){
try {
dlng = Double.parseDouble(sitesList.getLng().get(i));
} catch (NumberFormatException e) {
//System.out.println(e.getMessage());
}
}
if (dlat !=0 && dlng !=0){
GeoPoint point = new GeoPoint( new Double(dlat * 1e6).intValue() , new Double(dlng * 1e6).intValue());