Package gsearch

Examples of gsearch.Client


     * Busca Imagens Diretamente no Google
     * @param busca
     * @return
     */
    public static List<Result> buscaImagens(String busca) {
        Client c = new Client();
        return c.searchImages(busca +"");
    }
View Full Code Here


*/
public class TesteImagem {

    public static void main(String[] args) {

        Client c = new Client();

        List<Result> lolcats = c.searchImages("eu nao sei");
        for (int i = 0; i < lolcats.size(); i++) {
            try {
                Result rs = lolcats.get(i);
                URL link = new URL(rs.getUrl());

View Full Code Here

TOP

Related Classes of gsearch.Client

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.