编辑字符串变量

时间:2014-06-28 02:22:38

标签: android json api

我有一个试图阅读的JSON API的字符串变量 在它我必须添加纬度和经度 我得到了变量内的经度和经度以及变量内的站点 我现在如何编辑字符串以添加我的变量?

// JSON URL
private static String url = "https://codingsquared-prod.apigee.net/masaajid?lat=42.93167&long=-81.22807";


        // latitude variable
        double latitude = location.getLatitude();

        // longitude variable
        double longitude = location.getLongitude();

我想编辑

lat=42.93167&long=-81.22807

(lat =和long =

之后的数字

谢谢

2 个答案:

答案 0 :(得分:0)

// latitude variable
double latitude = location.getLatitude();

// longitude variable
double longitude = location.getLongitude();

// JSON URL
private static String url = "https://codingsquared-prod.apigee.net/masaajid?lat="+Double.toString(latitude)+"&long="+Double.toString(longitude);

答案 1 :(得分:0)

为什么不直接存储基本网址私有静态String url = "https://codingsquared-prod.apigee.net/masaajid?";当你知道2个变量通过连接形成完整的URL?