Domino Code Fragment
| Code Name* setEnvironmentVar method | Date* 11/18/2025 | Source (or email address if you prefer)* [email protected] IP address:.172.70.50.94 | |
| Description* 1. This script sets the value of the $HomeTown environment variable to "Tokyo." | Type* Java | Categories* (Misc) | |
| Implementation: | Required Client: | Server: |
| Limitations: | Comments: | |
class setenvvar extends NotesThread
{
public static void main(String argv[])
{
setenvvar t = new setenvvar();
t.start();
}
public void runNotes()
{
try
{
Session s = Session.newInstance();
s.setEnvironmentVar("HomeTown", "Tokyo", false);
}
catch (Exception e)
{
e.printStackTrace();
}
}
}