如何从Java下载Picasa Web API中的图像

时间:2010-12-23 04:18:24

标签: java api download picasa

Google的开发者指南介绍了如何upload photos到Picasa网络相册,但如何下载Java中的图像文件以便将其保存在本地计算机上?

1 个答案:

答案 0 :(得分:0)

我对Picasa网络相册API并不熟悉,但我认为只需查看Javadoc就可以了解这一点:

// read all photos from an album
URL feedUrl = "https://picasaweb.google.com/data/feed/api/user/username/albumid/albumid";

AlbumFeed feed = myService.getFeed(feedUrl, AlbumFeed.class);

for(PhotoEntry photo : feed.getPhotoEntries()) {
    MediaSource mediaSource = photo.getMediaSource();
    InputStream photoInputStream = mediaSource.getInputStream();
    // read from the photoInputStream here to get contents of photo
}