Reputation: 657
Hi Java expert, I am trying to extract data from given URL address where information is hidden under "div id". My URL query page looks like this:
I am giving peptide sequence as my query and then clicking on "Search Dataset" button to view the result as a table.
But when I am trying to do "View page source" to view the result as HTML and I didn't see that table.
After using 'firebug' I can see that table in HTML and that looks like this:
[![enter image description here][2]][2]
In order to get data for my query I have written simple JAVA script:
package retrieve.information;
import java.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
public class DemoExtractHidenHtml {
public static void main(String[] args) {
Document document;
try {
document = Jsoup.connect("http://example.com/xyz_proxi.jsp#{\"searched_button\":\"datasets\",\"peptide\":\"NLAVSQVVHK\"}").userAgent("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.21 (KHTML, like Gecko) Chrome/19.0.1042.0 Safari/535.21").get();
Element dataset = document.select("td.table[datasets]_row[0]_column[1]").first();
System.out.println(dataset);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
And of course it not working for me and I am getting following error:
Exception in thread "main" org.jsoup.select.Selector$SelectorParseException: Could not parse query 'td.table[datasets]_row[0]_column[1]': unexpected token at '_row[0]_column[1]'
at org.jsoup.select.QueryParser.findElements(QueryParser.java:196)
at org.jsoup.select.QueryParser.parse(QueryParser.java:65)
at org.jsoup.select.QueryParser.parse(QueryParser.java:39)
at org.jsoup.select.Selector.<init>(Selector.java:84)
at org.jsoup.select.Selector.select(Selector.java:106)
at org.jsoup.nodes.Element.select(Element.java:286)
at retrieve.information.DemoExtractHidenHtml.main(DemoExtractHidenHtml.java:14)
Anyone has any idea how to overcome this problem and I am a newbie in JAVA.
Upvotes: 1
Views: 384
Reputation: 657
Hi I have solved that problem using selenium. So solution for my problem:
package extract.data;
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class ExtractDataDynamic {
private static Scanner kb;
public static void main(String[] args) {
// TODO Auto-generated method stub
kb = new Scanner(System.in);
String userpepseq;
userpepseq = kb.nextLine();
if (userpepseq.trim().isEmpty()){
System.out.println("User didn't input any value!");
} else {
if (Pattern.matches("[a-zA-Z]+", userpepseq) == true) {
WebDriver drivermassid = new FirefoxDriver();
drivermassid.manage().window().maximize();
drivermassid.get("http://exmaple.com/xyz_proxi.jsp#{\"searched_button\":\"datasets\",\"peptide\":\""+userpepseq+"\"}");
//Here we are storing the value from the cell in to the string variable
String sCellValuemassid = drivermassid.findElement(By.xpath(".//*[@class='result']/tbody")).getText();
drivermassid.quit();
if (sCellValuemassid.length() > 0){
String mid="";
String status="";
Pattern pattern = Pattern.compile("MSV\\d+\\s+\\d+\\s+");
Matcher macther= pattern.matcher(sCellValuemassid);
while (macther.find()){
mid=((macther.group()).split("\\ "))[0];
status=((macther.group()).split("\\ "))[1];
}
if (meid.length() > 0 ){
WebDriver drivermasspro = new FirefoxDriver();
drivermasspro.manage().window().maximize();
drivermasspro.get("http://exmaple.com/xyz_proxi.jsp#{\"searched_button\":\"proteins\",\"peptide\":\""+userpepseq+"\"}");
String sCellValuemasspro = drivermasspro.findElement(By.xpath(".//*[@class='result']/tbody")).getText();
drivermasspro.quit();
if (sCellValuemasspro.length() > 0){
String [] proteinifo = sCellValuemasspro.split("\\n");
for (int i=0;i<proteinifo.length;i++) {
String [] subproteinifo = proteinifo[i].split("\\ ");
System.out.println(mid+" "+status+" "+subproteinifo[1]);
}
}
} else {
System.out.println(" ID doesn't exist for "+userpepseq +".");
}
} else {
System.out.println(userpepseq+" doesn't exist in database.");
}
} else {
System.out.println(userpepseq+" should not contain any number!");
}
}
Becuase that table is dynamic and they are using javascript to populate data into the table so I have found this is one of way to solve my porblem. Thanks
Upvotes: 1
Reputation: 81
If you can see the table in Firebug, then copy its Selector(CSS Path) and use as follows
document.select(selector_str);
document.select("#rso > div > div:nth-child(1) > div > h3 > a");
Upvotes: 1