Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Hi Pankaj, Thank for sharing this. But I am in a dilemma whether to use their interface like “/search” or not as according to google it’s considered as illegal. I have also checked their robot.txt file: www.google.com/robot.txt interface: /search is not allowed. So if I use this interface for 10Millions times in my java program, it will definitely create network congestion for Google (particularly on this exposed interface) and the problem to me. Isn’t? But before that please assist me in screen scraping activity I am doing. I am trying to fetch data provided by Google up-front like for word-meaning using jSoup: https://www.google.in/?gws\_rd=ssl$#q=pretend+meaning Thanks in Anticipation
- Shashank Makkar
I am getting an Exception in thread “main” java.net.ConnectException: Connection refused: connect here Document doc = Jsoup.connect(searchURL).userAgent(“Mozilla/5.0”).get();
- Ps17
Hi, How to get content for particular search in other words i need to implement URL , Title And body of content also, in above example i can get only title and URL for particular search. please reply as soon as possible. Thanks
- BASANT KUMAR
I am unable to compile since the computer says “package org.jsoup does not exist” what do I do?
- De Saha
sir,plz tell how can i coding to insert a video in project using jsp and java program…
- sasmi samantaray
It’s easier if you open directly to predefined browser if (Desktop.isDesktopSupported()) try { Desktop.getDesktop().browse(new URI(searchURL)); } catch (IOException e1) { e1.printStackTrace(); } catch (URISyntaxException e1) { e1.printStackTrace(); } and you don’t need the number of results, just the searchTerm String searchURL = GOOGLE_SEARCH_URL + “?q=”+searchTerm
- André Vilela