dalinkwent6
Junior Member
- Jun 30, 2013
- 114
- 16
Background: Intermediate java, basic C++
Problem:
I am trying to scrape proxies from a specific website that displays the proxies in table format |address|port|location|time updates| etc...
I usually just
Solution ideas:
I know hot to scan text files using scanner object so perhaps i can make a program that scans step 3 to auto mate replaces the spaces between address and port with ':' but that only saves a fraction of the time. Any ides on the algorithm to scan websites directly from an IDE (specifically eclipse)? And perhaps to change pages within that site to scan the next?
How
Problem:
I am trying to scrape proxies from a specific website that displays the proxies in table format |address|port|location|time updates| etc...
I usually just
- copy and paste each page (only has 20 per page) to word
- delete all the cells except address and port
- copy and paste to notepad to remove cell format and prepare for transfer
- i then delete the spaces between address and port and replace with ':'
- save file and import to scrapebox.
Solution ideas:
I know hot to scan text files using scanner object so perhaps i can make a program that scans step 3 to auto mate replaces the spaces between address and port with ':' but that only saves a fraction of the time. Any ides on the algorithm to scan websites directly from an IDE (specifically eclipse)? And perhaps to change pages within that site to scan the next?
How