您好,登錄后才能下訂單哦!
例如:
Address[addressLines=[0:"中國",1:"北京市海淀區"],feature=海淀街道北京技術交易促進中心,admin=北京市,sub-admin=null,locality=北京市,thoroughfare=null,postalCode=null,countryCode=CN,countryName=中國,hasLatitude=true,latitude=39.97283277275091,hasLongitude=true,longitude=116.30646521845006,phone=null,url=null,extras=null]
要求:提取混亂字符串中的一些有效信息,如:北京市海淀區海淀街道北京技術交易促進中心
代碼如下:
//首先取:北京市海淀區 //先找到字段開頭位置 int startCity = data.indexOf("1:\"") + "1:\"".length(); //找到字段結束位置 int endCity = data.indexOf("\"", startCity); //根據開頭和結尾,提取出所需字符串 String city = data.substring(startCity, endCity); //這里情況跟上面一樣 int startPlace = data.indexOf("feature=") + "feature=".length(); int endplace = data.indexOf(",", startPlace); String place = data.substring(startPlace, endplace); //最好拼接到一起 String Address = city + place ;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。