Retrieve version of Lotus Notes by java
This task use java to retrieve version of Lotus Notes.
Extract version of Lotus Notes
- Create getNotesVersion method as following
- Call getNotesVersion method as following
1 | try { |
2 | String idfile = "path to your id file"; |
3 | String password = "your password"; |
4 | NotesThread.sinitThread(); |
5 | Session s = NotesFactory.createSessionWithFullAccess(); |
6 | s.createRegistration().switchToID(idfile, password); |
7 | String version = getNotesVersion(s); |
8 | logger.info(version); |
9 | } catch (Exception e) { |
10 | logger.info("", e); |
11 | } |
try { String idfile = "path to your id file"; String password = "your password"; NotesThread.sinitThread(); Session s = NotesFactory.createSessionWithFullAccess(); s.createRegistration().switchToID(idfile, password); String version = getNotesVersion(s); logger.info(version); } catch (Exception e) { logger.info("", e); }
1 | private String getNotesVersion(Session session) throws Exception { |
2 | String version = session.getNotesVersion(); |
3 | int pos = version.indexOf("|"); |
4 | if (pos >= 0) { |
5 | version = version.substring(0, pos); |
6 | } |
7 | pos = version.indexOf("Release "); |
8 | if (pos >= 0) { |
9 | version = version.substring(pos + 8); |
10 | } |
11 | return version; |
12 | } |
private String getNotesVersion(Session session) throws Exception { String version = session.getNotesVersion(); int pos = version.indexOf("|"); if (pos >= 0) { version = version.substring(0, pos); } pos = version.indexOf("Release "); if (pos >= 0) { version = version.substring(pos + 8); } return version; }
No comments:
Post a Comment