0

我获取图片网址的代码

DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);
        httpPost.setEntity(new UrlEncodedFormEntity(params));

        HttpResponse httpResponse = httpClient.execute(httpPost);
        HttpEntity httpEntity = httpResponse.getEntity();
        InputStream inputStream = httpEntity.getContent();

        BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, "iso-8859-1"), 8);
        StringBuilder stringBuilder = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            stringBuilder.append(line + "\n");
        }
        inputStream.close();
        return stringBuilder.toString();

服务器代码在 php 中的位置

但问题是在每个 / 之前都有额外的 \ 例如数据库图像 URL 是,http://www.dvimaytech.com/markphoto/upload/herwadeshirish123@Gmail.com/Pic.jpg 但我每次都得到http:\/\/www.dvimaytech.com\/markphoto\/upload\/herwadeshirish123@Gmail.com\/Pic.jpg

这个问题是否无法解决,那么另一个解决方案(对我来说是最后一个选择)是删除每个 .

但是当我尝试使用url = url.replace("\",""); 它时会出现语法错误String literal is not properly closed by a double-quote

4

2 回答 2

2

只需使用像 gson 这样的 JSON 解析器库来为您解码 JSON 数据包。 http://code.google.com/p/google-gson/

它会让你的生活更轻松,避免使用 string.replace() 特定字符。

于 2012-12-28T07:43:15.820 回答
1

您可以使用以下方法来处理

public static String extractFileName(String path) {

    if (path == null) {
        return null;
    }
    String newpath = path.replace('\\', '/');
    int start = newpath.lastIndexOf("/");
    if (start == -1) {
        start = 0;
    } else {    
        start = start + 1;
    }
    String pageName = newpath.substring(start, newpath.length());

    return pageName;
}
于 2012-12-28T07:43:41.923 回答