我正在使用 Google Contacts API,我收到了所有数据并作为字符串发送到 JSON(javascript),但是当我从联系人获取图像时,我可以接收图像。如何将其发送到 JSON?如何将图像文件发送到 URL?(我可以使用路标吗?)
if (photoLink.getEtag() != null) {
GDataRequest request = myService.createLinkQueryRequest(photoLink);
request.execute();
// No Authentication header information
InputStream stream = request.getResponseStream();
Image image= ImageIO.read(stream);
}