Grazie!
Ora però ho un altro problema: non riesco ad aprire un file html in locale, se gli do la full path funziona, solo che mi serve la relative...
come faccio?
ciao
Gianluca
EDIT:
ce l'ho fatta così
Codice:
String s =null;
try
{
s="file:"
+System.getProperty("user.dir")
+System.getProperty("file.separator")
+"help/index.html";
URL helpURL=new URL(s);
try
{ txtGuide.setPage(helpURL);
}
catch (IOException e)
{}
}
catch (Exception e)
{}