Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6351639
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T22:02:43+00:00 2026-05-24T22:02:43+00:00

I am using this to get items from this website and return to a

  • 0

I am using this to get items from this website and return to a list.

  Document doc = null;
    try {
        doc = Jsoup.connect("http://www.gamespy.com/index/release.html").get();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
        // Get all td's that are a child of a row - each game has 4 of these
        Elements games = doc.select("tr>  td.indexList1, tr > td.indexList2");

        // Iterator over those elements     
        ListIterator<Element> postIt = games.listIterator();          
        while (postIt.hasNext()) {     
            // ...It 

            while (postIt.hasNext()) {     
                // Add the game text to the ArrayList     
                String name = postIt.next().text();
                String platform = postIt.next().text();
                String genre = postIt.next().text();
                String releaseDate = postIt.next().text();
                gameList.add(new GameRelease(name, platform, genre, releaseDate));
                Log.v(TAG, name +platform + genre +releaseDate);
            }

This is the html for the each item

<tr>
<td class="indexList1" align="left">
  <a href="http://pc.gamespy.com/pc/hacker-evolution-duality-/" class="b1">  
    <em>Hacker Evolution Duality </em>
  </a>
</td>
<td class="indexList1" align="center">
  PC 
</td>    
<td class="indexList1" align="center">

  Adventure 
</td>
<td class="indexList1" align="center">
    August 15, 2011
    <!--08/15/2011-->
</td>

Each item has the same pattern but i want to know could i retreive the url for each item too. You guys may need to view the source of the html too get a better idea.

But i want to store the url for each item in a string.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T22:02:44+00:00Added an answer on May 24, 2026 at 10:02 pm
    while (postIt.hasNext()) {
        // Get the title of the game
        Element title = postIt.next();
    
        System.out.println(title.text());
    
        // Get the anchor element
        Element url = title.select("a").first();
    
        // Get the URL here @@@
        System.out.println(url.attr("href"));
    
        // Unneeded elements
        Element platform = postIt.next();
        Element genre = postIt.next();
    
        // Get the release date of the game
        Element release = postIt.next();
        System.out.println(release.text() + "\n@@@@@@");
    }
    

    EDIT: In your case:

    Element name = postIt.next();
    String nameString = name.text();
    
    Element url = name.select("a").first();
    String urlString = url.attr("href");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im using this PHP to get a list of Title's from an RSS feed:
I'm using this example to fetch links from a website : http://www.merchantos.com/makebeta/php/scraping-links-with-php/ $xpath =
i'm using regex to get some information from a website, i have this code:
I'm making call to Alfresco Webscripts which return JSON. I do this using GET
This is my first time using PayPal to handle payments from a website, and
Im using this regex to get the contents of a tag in a file.
I'm using this query to get all employees of {clients with name starting with
I am using this code to get the background image of a div .
I'm using this line to get the beginning time of the first day of
Using this jquery code: <a href=javascript:void(0) id=m1>Get Selected id's</a> jQuery(#m1).click( function() { var s;

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.