hi its the first time i have had to install a package not included in default netbeans and cant get it to work im using ubuntu and downloaded jsoup from software center so it is defo installed correctly as it was taken care of by the good people in debian but i cant use it in netbeans
Document doc = Jsoup.connect("http://stackoverflow.com/questions/3036638/how-to-extract-web-page-textual-content-in-java").get();
String title = doc.title();
both these commands show red lines under and i can fix imports and if i type
import org.jsoup.Jsoup;
manually this allso has red line under it .
is there anythig else im suppossed to do thanks ?