You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CreateTaskResult result = client.createTask(PDFToOfficeEnum.PDF_TO_EXCEL.getValue());
63
+
// Create an example of a PDF TO WORD task
64
+
CreateTaskResult result = client.createTask(PDFToOfficeEnum.PDF_TO_WORD.getValue());
57
65
58
66
// Get a task id
59
67
String jobId = result.getTaskId();
60
68
61
-
// Upload files
62
-
63
-
// 1.Setting the file parameters
64
-
65
-
// The parameter field only sets the processing parameters for the currently supported functions. If no parameters are set, the default value is used. The JSON format and field explanation corresponding to different function types are shown in PDF file transfer tool guide.
@@ -82,20 +82,12 @@ ComPdfKitClient client = new ComPdfKitClient(<publicKey>, <secretKey>);
82
82
83
83
// Create a task
84
84
// Create an example of a PDF TO EXCEL task
85
-
CreateTaskResult result = client.createTask(PDFToOfficeEnum.PDF_TO_EXCEL.getValue());
85
+
CreateTaskResult result = client.createTask(PDFToOfficeEnum.PDF_TO_WORD.getValue());
86
86
87
87
// Get a task id
88
88
String jobId = result.getTaskId();
89
89
90
90
// Upload files
91
-
92
-
// 1.Setting the file parameters
93
-
94
-
// The parameter field only sets the processing parameters for the currently supported functions. If no parameters are set, the default value is used. The JSON format and field explanation corresponding to different function types are shown in PDF file transfer tool guide.
CreateTaskResult result = client.createTask(PDFToOfficeEnum.PDF_TO_EXCEL.getValue());
106
+
// Create an example of a PDF TO WORD task
107
+
CreateTaskResult result = client.createTask(PDFToOfficeEnum.PDF_TO_WORD.getValue());
116
108
117
109
// Get a task id
118
110
String jobId = result.getTaskId();
119
111
120
112
// Upload files
121
-
122
-
// 1.Setting the file parameters
123
-
124
-
// The parameter field only sets the processing parameters for the currently supported functions. If no parameters are set, the default value is used. The JSON format and field explanation corresponding to different function types are shown in PDF file transfer tool guide.
0 commit comments