Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 6 of 6

Thread: Data program advice

  1. #1
    Junior Member
    Join Date
    Jan 2014
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Data program advice

    Hi there
    I'm looking for a bit of help to create software that will gather information from various websites, such as live/current prices that are constantly changing and display them in a program in real time. My programming knowledge is very basic (loops, arrays...) but am looking forward to learning!
    Does anyone know the best way of going about this? I'm not in any rush but it's a long-term goal I'd like to achieve.
    Thanks in advance,
    David

    Feel free to move to another forum as I wasn't sure where to post this


  2. #2
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Data program advice

    Search for topics, tutorials, discussions on java data mining, web page scraping, etc. It's hard to point someone to specific info when their level of knowledge isn't known or demonstrated and admitted to be "very basic." It's a good goal and something to keep in mind, but keep building on your basic knowledge until you understand the basics very well and can comfortably use Object Oriented Programming (OOP) principles.

    There probably is a better place for this, but I haven't decided where yet.

  3. #3
    Junior Member
    Join Date
    Jan 2014
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Data program advice

    That's great thanks for that. At least I now know the name of what I'm searching for, which makes it easier!
    Thanks again

  4. #4
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Data program advice

    You're welcome. Good luck.

  5. #5
    Junior Member
    Join Date
    Jan 2014
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Data program advice

    I would recommend looking up how to grab html source from site and regex

  6. #6
    Forum VIP
    Join Date
    Jun 2011
    Posts
    317
    My Mood
    Bored
    Thanks
    47
    Thanked 89 Times in 74 Posts
    Blog Entries
    4

    Default Re: Data program advice

    Quote Originally Posted by TroostMe View Post
    I would recommend looking up how to grab html source from site and regex
    I wouldn't. Regex and html documents don't play well. A proper DOM parser is needed. Better yet JSON, RSS or XML depending on what the source website uses. JSON is becoming very popular for passing data around through web services because it is human readable, well structured and valid javascript.

    As GregBrannon says though this is something OP needs to work upwards towards.

  7. The Following User Says Thank You to ChristopherLowe For This Useful Post:

    GregBrannon (January 13th, 2014)

Similar Threads

  1. Can anyone give me help/advice on this java library program?
    By drunkinduncan in forum Object Oriented Programming
    Replies: 18
    Last Post: December 20th, 2013, 06:44 AM
  2. Program due tomorrow. need some advice.
    By hilliardmh in forum What's Wrong With My Code?
    Replies: 15
    Last Post: September 18th, 2013, 01:25 AM
  3. how can I get my program to enter data on a website?
    By leonne in forum Java Theory & Questions
    Replies: 4
    Last Post: April 21st, 2013, 04:10 PM
  4. A poker program that gives advice based on pre set strategy...
    By mcbgun in forum Java Theory & Questions
    Replies: 0
    Last Post: December 19th, 2012, 10:19 AM
  5. Advice how to sort data from database
    By gerre in forum Java Theory & Questions
    Replies: 1
    Last Post: August 2nd, 2012, 09:01 AM