Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
StiPdfFormSubmission submission = new StiPdfFormSubmission();
submission.parseXFDF(data); // data = raw request bytes
String name = submission.getStringValue("CustomerName");
String email = submission.getStringValue("CustomerEmail");
Date date = submission.getDateTimeBoxValue("OrderDate", "MM/dd/yyyy");
String ship = submission.getSingleSelectionValue("DeliveryMethod");Read table rows.int rows = submission.getTableRowsCount("OrderItems");
int cols = submission.getTableColumnsCount("OrderItems");
for (int y = 0; y < rows; y++)
for (int x = 0; x < cols; x++)
System.out.print(submission.getTableFieldValue("OrderItems", x, y) + "|");StiPdfFormSubmission.parseXFDF(bytes) — parse the submitted form data (XFDF) posted to the controller.getStringValue/getDateTimeBoxValue/getSingleSelectionValue — read individual fields; getTableFieldValue reads table cells.