Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从没有图像 url、只有图像名称和图像扩展名的 JSON Web 服务解析图像。
{
“图像”:“ABC.jpg”
}
您好,欢迎来到 stackoverflow。
您需要将基本 URL 附加到类似字符串"http://server"并将其传递给 imageURL。
"http://server"
喜欢 :
String url ="http://server/"; // In your parsing url =url +json.getString(Image);