您好我是flickrj库的新手。
尽管有基础的java知识
我正在处理的项目要求我对flickr进行身份验证,然后将地理标记的图像下载到本地硬盘中的文件夹中。该程序将是桌面应用程序
我正在通过分解为3个步骤来接近该计划。
1.正确的认证完成。(我已经成功)
2.尝试下载用户在验证时拥有的所有照片
3.尝试稍微改变代码,以便只下载带地理标记的图像。
我的问题在第2步。我无法下载登录的用户图片,更不用说地理标记的用户图片了。
我正在尝试Daniel Cukier here提供的代码
但我遇到了问题。
我的netbeans简单地在上.getOriginalAsStream()部分的线77击出,用错误“了java.lang.RuntimeException:不可编译的源代码 - 错误的符号类型:java.io.ByteArrayOutputStream.write”
根据我的理解,netbeans打破了一条线意味着,它是折旧的,但它还不能运作吗?是什么让这整个问题回来了?
我已经尝试过研究,基本上我不得不承认,我的能力超出了我的能力。如果有人对我做错了什么有任何想法,我会非常感激。
。PS:我不希望被勺子喂养,但请你回答我的白痴友好的方式,因为我还是一个学生,我的Java是不是最大的。
此代码是我目前所拥有的。
import com.aetrion.flickr.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.util.Properties;
import javax.xml.parsers.ParserConfigurationException;
import org.xml.sax.SAXException;
import com.aetrion.flickr.auth.Auth;
import com.aetrion.flickr.auth.AuthInterface;
import com.aetrion.flickr.auth.Permission;
import com.aetrion.flickr.photos.Photo;
import com.aetrion.flickr.photos.PhotoList;
import com.aetrion.flickr.photos.PhotosInterface;
import com.aetrion.flickr.util.IOUtilities;
import java.io.*;
import java.util.Iterator;
import org.apache.commons.io.FileUtils;
public class authenticate {
Flickr f;
RequestContext requestContext;
String frob = "";
String token = "";
Properties properties = null;
public authenticate() throws ParserConfigurationException, IOException, SAXException {
InputStream in = null;
try {
in = getClass().getResourceAsStream("/setup.properties");
properties = new Properties();
properties.load(in);
} finally {
IOUtilities.close(in);
}
f = new Flickr(
properties.getProperty("apiKey"),
properties.getProperty("secret"),
new REST()
);
Flickr.debugStream = false;
requestContext = RequestContext.getRequestContext();
AuthInterface authInterface = f.getAuthInterface();
try {
frob = authInterface.getFrob();
} catch (FlickrException e) {
e.printStackTrace();
}
System.out.println("frob: " + frob);
URL url = authInterface.buildAuthenticationUrl(Permission.DELETE, frob);
System.out.println("Press return after you granted access at this URL:");
System.out.println(url.toExternalForm());
BufferedReader infile =
new BufferedReader ( new InputStreamReader (System.in) );
String line = infile.readLine();
try {
Auth auth = authInterface.getToken(frob);
System.out.println("Authentication success");
// This token can be used until the user revokes it.
System.out.println("Token: " + auth.getToken());
System.out.println("nsid: " + auth.getUser().getId());
System.out.println("Realname: " + auth.getUser().getRealName());
System.out.println("Username: " + auth.getUser().getUsername());
System.out.println("Permission: " + auth.getPermission().getType());
PhotoList list = f.getPhotosetsInterface().getPhotos("72157629794698308", 100, 1);
for (Iterator iterator = list.iterator(); iterator.hasNext();) {
Photo photo = (Photo) iterator.next();
File file = new File("/tmp/" + photo.getId() + ".jpg");
ByteArrayOutputStream b = new ByteArrayOutputStream();
b.write(photo.getOriginalAsStream());
FileUtils.writeByteArrayToFile(file, b.toByteArray());
}
} catch (FlickrException e) {
System.out.println("Authentication failed");
e.printStackTrace();
}
}
public static void main(String[] args) {
try {
authenticate t = new authenticate();
} catch(Exception e) {
e.printStackTrace();
}
System.exit(0);
}
}
答案 0 :(得分:0)
您对不推荐使用getOriginalAsStream()的删除线的解释是正确的。您可能希望重新编写代码以使用PhotosInterface.getImageAsStream(),并将ORIGINAL大小作为参数之一传递。
要调整NetBeans关于弃用方法的行为,您可以按照@AljoshaBre和this one建议的链接进行操作。
答案 1 :(得分:0)
如果您想从Flickr下载所有照片,如果您有一台Mac电脑,这是可能的
在Apple Store上下载Aperture程序并进行安装
安装完成后,打开Aperture
继续偏好。
点击“帐户”标签。
点击左下角的加号(+)添加照片服务
添加闪烁选项。
按照登录和授权说明进行操作
完成!您的所有照片都将在您的光圈库中同步〜/ images /
我希望我有所帮助。