private void WebJSoup_jButtonActionPerformed(java.awt.event.ActionEvent evt) {
try{
Document doc=Jsoup.connect("http://www.imdb.com/search/title?groups=top_250&sort=user_rating").userAgent("Mozilla/17.0").get();
Elements links=doc.select("h3.lister-item-header");
int i=0;
for(Element link:links)
{i++;
jTextArea1.setText(i+" "+link.getElementsByTag("a").first().text());
}}catch(Exception e){
JOptionPane.showMessageDialog(null, e);
}
}
this is showing only the last movie name. but i want to display all movies name