我想知道如何检查照片是否在照片集中。我通过
获得了照片 PhotoList<Photo> PL = Pface.recentlyUpdated(thisDate, null, 0, 0);
for (int i = 0;i<PL.size();i++)
{
Photo p = PL.get(i); //want to check that if 'p' is present in any set or not . If present want to get the name.
}
答案 0 :(得分:1)
这帮助我度过了这个。
https://github.com/callmeal/Flickr4Java/blob/master/Flickr4Java/src/examples/java/Backup.java
答案 1 :(得分:0)
我看到每张照片对象都有一个ID。
因此,如果您有两张照片:photoSet1和photoSet2,其中photoOne是来自photoSet1的照片对象,您可以执行以下操作:
boolean photoFound = false;
for (int i = 0; i < photoSet2.size(); i++)
{
if (photoOne.id.Equals( photoSet2.Get(i).id ) )
{
photoFound = true;
}
}