Retrieve list of Lotus Notes forms
This task retrieve list of Lotus Notes forms including name and xml data.
Retrieve list of Lotus Notes forms using java, DxlExporter and jsoup
- Create getFormList as following
- Call getFormList method as following
Call method
getFormList method
1 | try { |
2 | String idfile = ""; |
3 | String password = ""; |
4 | String server = ""; |
5 | String filepath = ""; |
6 | NotesThread.sinitThread(); |
7 | Session s = NotesFactory.createSessionWithFullAccess(); |
8 | s.createRegistration().switchToID(idfile, password); |
9 | Database d = s.getDatabase(server, filepath); |
10 | Map<String, String> forms = getFormList(d); |
11 | for (String key : forms.keySet()) { |
12 | logger.info("Form: " + key); |
13 | logger.info(forms.get(key)); |
14 | } |
15 | } catch (Exception e) { |
16 | logger.error("", e); |
17 | } |
try { String idfile = ""; String password = ""; String server = ""; String filepath = ""; NotesThread.sinitThread(); Session s = NotesFactory.createSessionWithFullAccess(); s.createRegistration().switchToID(idfile, password); Database d = s.getDatabase(server, filepath); Map<String, String> forms = getFormList(d); for (String key : forms.keySet()) { logger.info("Form: " + key); logger.info(forms.get(key)); } } catch (Exception e) { logger.error("", e); }
1 | public Map<String, String> getFormList(Database db) { |
2 | Map<String, String> tag = new HashMap<String, String>(); |
3 | try { |
4 | NoteCollection nc = db.createNoteCollection(false); |
5 | nc.setSelectForms(true); |
6 | nc.buildCollection(); |
7 | String noteId = nc.getFirstNoteID(); |
8 | int fileNo = 0; |
9 | while (noteId != null) { |
10 | try { |
11 | lotus.domino.Document doc = db.getDocumentByID(noteId); |
12 | DxlExporter dxl = db.getParent().createDxlExporter(); |
13 | dxl.setConvertNotesBitmapsToGIF(true); |
14 | String xml = dxl.exportDxl(doc); |
15 | dxl.recycle(); |
16 | doc.recycle(); |
17 | |
18 | xml = xml.substring(xml.indexOf("<form ")); |
19 | org.jsoup.nodes.Document jdoc = Jsoup.parse(xml); |
20 | Element element = jdoc.select("form").first(); |
21 | tag.put(element.attr("name"), xml); |
22 | } catch (Exception e) { |
23 | logger.error("", e); |
24 | } |
25 | |
26 | fileNo++; |
27 | if (fileNo == nc.getCount()) { |
28 | noteId = null; |
29 | } else { |
30 | noteId = nc.getNextNoteID(noteId); |
31 | } |
32 | } |
33 | nc.recycle(); |
34 | } catch (Exception e) { |
35 | logger.error("", e); |
36 | } |
37 | return tag; |
38 | } |
public Map<String, String> getFormList(Database db) { Map<String, String> tag = new HashMap<String, String>(); try { NoteCollection nc = db.createNoteCollection(false); nc.setSelectForms(true); nc.buildCollection(); String noteId = nc.getFirstNoteID(); int fileNo = 0; while (noteId != null) { try { lotus.domino.Document doc = db.getDocumentByID(noteId); DxlExporter dxl = db.getParent().createDxlExporter(); dxl.setConvertNotesBitmapsToGIF(true); String xml = dxl.exportDxl(doc); dxl.recycle(); doc.recycle(); xml = xml.substring(xml.indexOf("<form ")); org.jsoup.nodes.Document jdoc = Jsoup.parse(xml); Element element = jdoc.select("form").first(); tag.put(element.attr("name"), xml); } catch (Exception e) { logger.error("", e); } fileNo++; if (fileNo == nc.getCount()) { noteId = null; } else { noteId = nc.getNextNoteID(noteId); } } nc.recycle(); } catch (Exception e) { logger.error("", e); } return tag; }