0
votes
1answer
67 views

Using Jsoup to populate a ListView

I am trying to parse a website using Jsoup, take the info I get and populate a ListView. The HTML looks like this: <ul class="list_view"> <li> <a href="/username/" > ...
0
votes
0answers
72 views

How to scrape or parse Iframe content to get specific values

I get Iframe link http:\\abc.com?=blahblahiframelink from a third party rest service. I want to extract multiple values from content of that Iframe. Here is simplified html. Please understand that ...
0
votes
0answers
224 views

Getting data from a dynamic website online [closed]

I would like to get some data from a website. It is updated every few seconds with new information using JQuery and get requests. Actually, it is just one <span> tag that I am interested in ...
0
votes
1answer
112 views

Java screen scraping, how to get respone from redirect post request

I just experimenting on data extraction thing with java, search in this forum and found that it was called screen scraping. i have looking for screen scraper library for java and found JSoup to parse ...
1
vote
2answers
106 views

How to fetch field names and values from another website?

I'm having some problems in Java. I'm trying to fetch a randomly named input's name and it's value, along with a few other inputs. The source of the page I need to grab the values from looks like ...
2
votes
1answer
250 views

Extract a specific line from a webpage using JSoup for Java

Hi I want to scrape some text from a website using the JSoup library. I have tried the following code, and that gives me the whole webpage, I want to just extract a specific line. Here is the code I ...
0
votes
0answers
131 views

How to parse/screen scrape this webpage of in java with jsoup [closed]

I have a moderate to strong background in Java but a little in HTML and not much in JavaScript/CSS. I was wondering how I could use jSoup to parse data from the table this website: ...
0
votes
1answer
132 views

Selenium: How to select nth button using the same class name

I am trying to select the 3rd button using the css class "btnProceed" <input type="button" class="btnProceed" value=" " ...
0
votes
2answers
129 views

How to get h2 Tag of a table using Jsoup

I need some help scraping a webpage with Jsoup. I want to pars player profiles from the hcfactions webpage and gather their kills and deaths. The problem I'm running into is that each profile page is ...
0
votes
0answers
514 views

how to submit form using jsoup

I want to submit form from a webpage which has several forms. I want to submit this form below in particular. <form action="realDisplay.asp" method="post" name="Search" onSubmit="return ...
0
votes
0answers
261 views

Java screen scraping with JTidy - Parsing HTML values

So what I'm trying to accomplish is scraping an IMDB webpage for data from webseries. Problem is when I convert the page to a DOM object and try to get values it's not as easy as it looks. For ...
0
votes
1answer
105 views

How to automate/simulate user navigation of a Java Applet through code?

I have a legacy external Java Applet application. When I say external, I mean that I do not have access to the source. I am looking for suggestion on how I can, do the following through code: Open ...
0
votes
1answer
209 views

Getting data from a webpage (screenscraping)

Can someone please give me a good tutorial on screen scraping. I have a webpage that my university uses to upload all the data for each class. To get on to the home page for their site there is an ...
1
vote
1answer
88 views

JSoup issue with ancestor child operator to perform a selection

I'm attempting to scrape everything inside a div with the class of results-column. This is the code I'm using for my query, which is not returning any data: Elements el_name = ...
1
vote
1answer
129 views

jsoup - how to check if a webpage exist or not

Hi stackoverflow users. When i was doing web scraping, i encountered a problem that, when i scrape through a series of webpages of a particular site, with their URLs being ...
3
votes
1answer
397 views

JTidy or Jsoup for Java

Recently I have been developing web scrapers in python with BeautifulSoup. Now I want to know which libraries are most preferred in Java. I have done some search, mostly I see JTidy and JSoup. What is ...
0
votes
2answers
138 views

utf-8 convertion doesn't work always

I searched into other stack before to type here and I didn't find anything similar. I have to scrape different utf-8 webpages which contain text like "Oggi รจ una bellissima giornata" the problem is ...
0
votes
2answers
190 views

Now, how can I screen-scrap such a html line (using java)?

I am trying to screen-scrap a html page so I can extract desired valuable data from it and into a text file. So far it's going well until I came across this within the html page: <td> ...
1
vote
2answers
341 views

screen scraping on android phone using (ICS)

I am looking to implement simple automation which requires screen scraping for an android (ICS) phone. What are the options, frameworks, libraries available? I have been using WATIN on .NET and ...
0
votes
2answers
81 views

Is there a library than can trudge through AJAX/javascript?

I'm using PHP to scrape some information off webpages, however, I've discovered that the info I'm trying to scrape from the pages is loading through some manner of AJAX/javascript. I thought I ...
-1
votes
2answers
180 views

Tool to pull financial data from a website?

I need to create a tool that can log in to a website, read the HTML, perhaps navigate to another page, and ultimately pull data down from the page (and export it to a file, or keep it "in memory" for ...
1
vote
4answers
475 views

web scraping using Regex in java

I'm trying to write a crawler to get the menu items from a site using regex in java. The website url is http://www.dinebombaygarden.com/appetizers.html How can I get the menu items (Vegetable ...
1
vote
1answer
1k views

Getting an exception “SSLPeerUnverifiedException: peer not authenticated”, how can I avoid/ignore it?

I am trying to log in to a website using HtmlUnit (Java Library), and am getting an exception that I feel I could just ignore. The exception is "javax.net.ssl.SSLPeerUnverifiedException: peer not ...
0
votes
1answer
263 views

How to programmatically submit a filled form and scrap the resulting page?

I want to retrieve a set of results, which consist of all results produced by (looping) all the options of one of the request-form fields. I'm using Java language, and HtmlUnit API. I have managed ...
0
votes
0answers
227 views

HttpClient is not showing all HTML Inputs on a web page

I am using a Http Get to request a website with a total of 7 Html Inputs on it. However, when I get the page and output it, only 5 inputs appear (in either my console or outputted to a text file). ...
0
votes
2answers
621 views

How do I scrape full-sized images from a website?

I am trying to obtain clinical images of psoriasis patients from these two websites for research purposes: http://www.dermis.net/dermisroot/en/31346/diagnose.htm http://dermatlas.med.jhmi.edu/derm/ ...
1
vote
1answer
246 views

Java emulation of a vt220 terminal for screen scraping

I have to do a screen scraping of a vt200 telnet connection using Java 1.6. I have tried to cheat and use a simple telnet connection with InputStrem and OutputStream but the server is picky and, when ...
-1
votes
1answer
228 views

Get Only id and href

My output consists of multipe id and href and other data. How to get all the id and href values using Htmlunit and Java code? I need to get all the href values mandatory but id is not mandatory... ...
1
vote
2answers
1k views

Jsoup posting modified Document

I'm trying to create a web scraper for my coming android app. Therefore I need to use a simple search form on a website, fill it out and send my results back to the server. As mentioned in the ...
2
votes
3answers
1k views

Where can I find the Base64Encoder class?

Hi I saw an example on StackOverflow which had this code: String encoding = Base64Encoder.encode ("test1:test1"); HttpPost httppost = new HttpPost("http://host:post/test/login"); ...
0
votes
1answer
660 views

auto logging and web scraping

I have a task where I need to autologin and scrape a particualr website. I have seen people suggesting htmlUnit and HttpClient mostly with Java. htmlUnit looks like a testing tool. I am not sure what ...
2
votes
3answers
360 views

Looking for a “web-scraping script builder”

I'm writing the code to access and download data from some web sites using HTMLUnit. I was wondering whether a tool that could help me exists. I think maybe to a visual tool, something that lets you ...
1
vote
1answer
65 views

Why does yahoo movies return an “unknown issue” page?

As I know yahoo movies doesn't have an API, I made a scraper (Java) for it. Now the problem is that as I'm requesting several pages to yahoo movies, it sometimes return an "unknown problem" page so I ...
1
vote
0answers
425 views

JSoup and the site I can't scrape

I'm learning to use JSoup and to do so I started with a site which contains football matches. I'm not good at html and this may be the problem, anyhow, I checked the code of the site to understand how ...
3
votes
6answers
156 views

Pattern optimization

I need to scrape some content from a HTTP response with Java. The required fields in the response are: foo, bar and bla. My current pattern is very slow. Any ideas how to improve that? Response: ... ...
0
votes
2answers
268 views

Retreive DOM data from site

Is there any chance to retreive DOM results when i click older posts from site: http://www.facebook.com/FamilyGuy using C# or Java? I heard that it is possible to execute script onclick and get ...
0
votes
2answers
147 views

Screen scraping using a server to process the data

The idea is the following. The user sends credentials to the server (username,password). Server tries to login to the website and parses useful data. Some data remains to server in order to ...
3
votes
1answer
1k views

Which HTML DOM parser works best on Android?

I need to process some HTML pages in my Android App and I would prefer to use XPath for extracting the relevant information. For regular J2SE there are a lot of possible implementations for parsing ...
1
vote
3answers
1k views

What is the best way to scrape this HTML for an android app?

What is the best way to scrape the below HTML from a web page? I want to pull out Apple, Orange and Grape and put them into a dropdown menu in my Android app. Should I use Jsoup for this, and if so, ...
1
vote
2answers
1k views

Avoid spaceless concatenation with JSoup

Suppose I have a div as such: <div> This is a paragraph written by someone on the internet. </div> The problem is that when JSoup parses this, it puts it all on one line, so that when I ...
2
votes
1answer
1k views

How to take screenshot without using keyboard? (problem with Java and VMWare)

I'm facing a little problem. I have a virtual OS in VMWare and i need to take a screenshot of it. I have to be able to take screenshot from original OS(my software is running in original OS and key ...
0
votes
0answers
440 views

Recording video using Java displaying black screen

I want to capture screen activity using Java. After long googled search, I got solution through stackoverflow from this link How can I record a Java Swing GUI as a video file on Mac OS X?. I have run ...
3
votes
1answer
618 views

Taking screenshot of VMware Virtual OS using host OS java application (java Robot)

I have developed a java application which takes a screenshot using robot (presses "Print Screen"). Problem is, it won't work if i move to VMware's Virtual OS. Java application running is host OS ...
2
votes
1answer
483 views

filtering externally loaded javascript in htmlunit

While using htmlunit to scrape a webpage, I occasionally notice warnings like these that flood the console output. Jul 24, 2011 5:12:59 PM ...
0
votes
2answers
342 views

How to update content in html using htmlunit?

I found it very difficult to work with htmlunit in terms of creating new html content on the fly like we can do in jquery. For example given a text node: I am text I want change that text node ...
14
votes
3answers
8k views

jsoup posting and cookie

I'm trying to use jsoup to login to a site and then scrape information, I am running into in a problem, I can login successfully and create a Document from index.php but I cannot get other pages on ...
0
votes
2answers
126 views

Are there any tools for automatically generating Java code for screen scraping

Is there a way of browsing a web site through a proxy and autogenerating Java code (using HtmlClient) that can play back the requests?
1
vote
1answer
398 views

What applications or libraries are available for screen scraping applications on Windows?

We develop an application that clients use side-by-side with in-house custom software. One of our clients has requested that we investigate the use of screen scraping software to provide a sort of ...
1
vote
1answer
293 views

Create processor for screen transmit RTSP

I have the next class, which is used to transmit RTP via audio or video files in Java. So far so good. What I want is to modify the UnicastRtp class to enable the transfer the screen, that is, you ...
2
votes
2answers
1k views

Why doesn't HTMLunit work on this https webpage?

I'm trying to learn more about HTMLunit and doing some tests at the moment. I am trying to get basic information such as page title and text from this site: https://....com (removed the full url, ...

1 2