Item name | Required / Optional | Use of Variables | Description | Remarks |
---|---|---|---|---|
Name | Required | Not available | Enter the name on the script canvas. | |
Input data | Required | Not available | Select the component on the script canvas. |
Item name | Required / Optional | Use of Variables | Description | Remarks |
---|---|---|---|---|
File | Required | Available | Input file path of CSV format or TSV format.
Click [Browse] button to activate the file Selectr and Select the file. |
|
Delimiter mode | Required | Not available | Select how to specify the delimiter.
|
|
Select from list / Delimiter | Optional | Not available | Select delimiter.
|
|
Enter directly / Delimiter | Optional | Available | Input one delimiter. |
|
Enter character code / Delimiter | Optional | Available | Enter character code.
Character code input is converted to encode specified in [Encoding]. Input with Octal (prefix "0" <the number zero>), decimal (no prefix), hexadecimal (prefix "0x" <the alphabet X and the number zero> or "#") is available. If padding is composed of multiple bytes, input with being separated by commas.Ex.: 0x10, 0x13 |
|
Column list | Optional | - | Specify the column.
Each column can be operated with the following buttons.
|
|
Column list/Column name | Required | Available | Input the name of the column.
You can set the first row of the file specified in [File] of property action of [Update column list] as the column name. |
|
Columns list / Quotation | Optional | Not available | Select whether to enclose each column with double quotes.
|
Item name | Description | Remarks |
---|---|---|
Preview | Start the previewer, display the contents of the file specified in [File]. |
|
Update column list | Set the first line of the file specified in [File] as the column name. |
|
Get column name from the first row | Select the file in the file Selectr and set the first line of the file as the column name. | |
Get column count | Select the file in the file Selectr and set the number of columns of the file as the number of columns of the column name. |
Item name | Required / Optional | Use of Variables | Description | Remarks |
---|---|---|---|---|
Encoding | Required | Available | Select or input write file encode.
Use only the canonical name supported by Java SE Runtime Environment 8 when specifying the encoding directly in the field. Refer to "Supported Encodings"(http://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html) for details. |
|
New line code | Required | Not available | Select a new line code.
|
|
Overwrite | Optional | Not available | If the specified file exists, Select whether to overwrite it or not.
|
|
Append | Optional | Not available | If the specified file exists, Select to overwrite it or append it to the end of the file.
|
|
Insert column name in the first line | Optional | Not available | Select whether to insert column names to the 1st line in specified file.
|
|
Do not insert the column name when the file exists | Optional | Not available | Select whether to insert the column name to the first line of result data if specified file exists.
|
|
Item name | Required / Optional | Use of Variables | Description | Remarks |
---|---|---|---|---|
Execute transaction processing | Required | Not available | Select whether to perform transaction processing.
|
Item name | Required / Optional | Use of Variables | Description | Remarks |
---|---|---|---|---|
Comment | Required | Not available | You can write a short description of this adapter. The description will be reflected in the specifications. |
Component variable name | Description | Remarks |
---|---|---|
count | Return the number of lines of written data. |
|
message_category | Stroes the category to which corresponding message code belongs to, when an error occurs. |
|
message_code | Stores its corresponding message code of occured error. |
|
message_level | Stores the severity of the corresponding message code of the occured error. |
|
error_type | Returns the error type when error occurred. |
|
error_message | Return the error message when error occurred. |
|
error_trace | Return trace information when error occurred. |
|
Data value | Notation |
---|---|
1,000 yen | "1,000 yen" |
AB (newline) CD | "AB (newline) CD" |
He says "I,m fine" | "He says ""I,m fine""" |
Exception name | Causes | Solution |
---|---|---|
InputDataNotFoundException | [Input data] is not specified. | Specify the [Input data], or draw the data flow. |
InvalidPropertyConfigurationException
<Property name> is not specified. |
[<Property name>] is not specified. | Specify [<Property name>]. |
InvalidPropertyConfigurationException
Invalid delimiter is specified. |
Invalid character is input in [Delimiter] | Please input valid character in [Delimiter]. |
FileIsDirectoryException | Path input in [File] is directory. | Input file path in [File]. |
FileAlreadyExistedException | File specified in [File] already exists . | Put check in change file name of [File], or [Overwrite] of [Write Settings]. |
FileIsLockedException | File specified in [File] is locked. | Please go to Windows Explorer or CLI to unlock. |
java.io.FileNotFoundException
Another processing is in use. |
File specified in [File] is being used by another process. | Please check whether it is used by other processing. |
java.io.UnsupportedEncodingException | Encodes that are not supported in [Encoding] are specified. | Specify an encoding that is supported in Java SE Runtime Environment 8.
Refer to "Supported Encodings"(http://docs.oracle.com/javase/8/docs/technotes/guides/intl/encoding.doc.html) for details. |