i use Jsoup to extract specified data from a website,
try{
Document doc = Jsoup.connect("http://example/search/").get();
} catch(IOException){
System.out.println("error");
}
but i'm got failed, and the output is "error".
when i browse with Mozilla,or another browser this address is successfully to load. Any idea?Please help me..
Best regards