Hello,
if I use the NotesDXLExporter to export a design element, in the resulting file the xml is surrounded by double quotas. For what makes this sense?
It is cumbersome for interprete this xml for instance with SaxXMLParser.
Hello,
if I use the NotesDXLExporter to export a design element, in the resulting file the xml is surrounded by double quotas. For what makes this sense?
It is cumbersome for interprete this xml for instance with SaxXMLParser.
Subject: This is not a DXL issue
but has to do with how you put the information into a file. I prefer is to use a NotesStream. I think maybe you’re using a Write # statement.
Subject: DXLExporter double quote
Yes! Thanks! That was the solution.I’ve replaced the export writing using stream and now it looks really better.
…But the reason for using #write was the sample in the Lotus Notes help database. Is it for other things useful to use #write?
Subject: Some people might use it
…to create CSV files, where putting quotes around your strings is useful, but you can also do that with the other techniques, and with greater control (I don’t know what write# does if there are quotes in the string, for instance, and you might not want to always do the same thing in that case).