Domino Code Fragment
Code Name* getURLDatabase method | Date* 06/28/2025 | Source (or email address if you prefer)* [email protected] IP address:.172.69.6.212 | |
Description* This program opens the default Web navigator database. | Type* Java | Categories* (Misc) |
Implementation: | Required Client: | Server: |
Limitations: | Comments: |
class geturldb extends NotesThread
{
public static void main(String argv[])
{
geturldb t = new geturldb();
t.start();
}
public void runNotes()
{
try
{
Session s = Session.newInstance();
Database db = s.getURLDatabase();
System.out.println
("Title of URL database: \"" + db.getTitle() + "\"");
}
catch (Exception e)
{
e.printStackTrace();
}
}
}