I want to create XML with this code :
public static void CreateXML (){
try{
XMLOutputter xmlOut = new XMLOutputter();
}catch (IOException e){
e.printStackTrace();
}
}
But I have this error :
XMLParcourt.java:69: error: cannot find symbol
XMLOutputter xmlOut = new XMLOutputter();
^
symbol: class XMLOutputter
location: class XMLParcourt
Maybe it because Jdom library is not import, but how import library with vs code?...