SmartClient Version: v8.3p_2013-05-15/PowerEdition Deployment (built 2013-05-15)
With v3.1, it appears that this call generates incorrect line endings (Was not a problem in v3.0). This code:
results in lines ending in CR - it should be LF. This code:
results in lines ending in CRCRLF - it should be CRLF.
The documentation for the setLineBreakStyle API refers to further documentation on the allowed values for lineBreakStyle, which I could not find (LineBreakStyle class??). Can you point me to the documentation on the allowed values?
We are attempting to migrate our application to version 3.1 and this issue has broken all of our export to CSV functionality.
With v3.1, it appears that this call generates incorrect line endings (Was not a problem in v3.0). This code:
Code:
dsRequest.setExportAs(ExportFormat.CSV); dsRequest.setLineBreakStyle("unix");
Code:
dsRequest.setExportAs(ExportFormat.CSV); dsRequest.setLineBreakStyle("dos");
The documentation for the setLineBreakStyle API refers to further documentation on the allowed values for lineBreakStyle, which I could not find (LineBreakStyle class??). Can you point me to the documentation on the allowed values?
Code:
public void setLineBreakStyle(java.lang.String lineBreakStyle) The style of line-breaks to use in the exported output. See LineBreakStyle for more information.
Comment