public static void testQueryImageinfo001() {
String[] listOfImageStrings = { "Image:Question book-new.svg", "Image:Test.jpg", "Image:Brandenburger Tor Blaue Stunde.jpg" };
User user = new User("", "", "http://en.wikipedia.org/w/api.php");
user.login();
List<Page> listOfPages = user.queryImageinfo(listOfImageStrings);
for (Page page : listOfPages) {
// print page information
System.out.println(page.toString());
// download the image to c:\temp directory
FileOutputStream os = null;