Home > Contents > Index >
FormPoster.addFileData
Adds file (upload) data.
Use this method for a multipart post, for example
INPUT TYPE=FILE.
This method has four variants:
- addFileData (Variant 1) adds file (upload) data using a byte array.
- addFileData (Variant 2) adds file (upload) data using a byte array and allows you to specify the data's MIME type.
- addFileData (Variant 3) adds file (upload) data using an input stream and allows MIME type.
- addFileData (Variant 4) adds file (upload) data using an input stream.
FormPoster.addFileData
Adds file (upload) data using a byte array. Use this method for multipart posting operations, for example,
INPUT TYPE=FILE
.Syntax
public boolean addFileData(String sParamName, String sFileName, byte[] byData)Parameters
sParamName
- The parameter name.
sFileName
- The name of the file on the target system.
byData
- The byte array containing the file data.
Returns
Returns
true
if successful.
FormPoster.addFileData
Adds file (upload) data using a byte array. Use this method for multipart posting operations; for example,
INPUT TYPE=FILE
.Syntax
public boolean addFileData(String sParamName, String sFileName, byte[] byData, String sMIMEType)Parameters
sParamName
- The parameter name.
sFileName
- The name of the file on the target system.
byData
- The byte array containing the file data.
sMIMEType
- The MIME type of the data.
Returns
Returns
true
if successful.
FormPoster.addFileData
Adds file (upload) data using an input stream. Use this method for multipart posting operations; for example,
INPUT TYPE=FILE
.Syntax
public boolean addFileData(String sParamName, String sFileName, InputStream is, String sMIMEType)Parameters
sParamName
- The parameter name.
sFileName
- The name of the file on the target system.
is
- The object containing the data you want to read.
sMIMEType
- The MIME type of the data.
Returns
Returns
true
if successful.
FormPoster.addFileData
Adds file (upload) data using an input stream. Use this method for multipart posting operations; for example,
INPUT TYPE=FILE
.Syntax
public boolean addFileData(String sParamName, String sFileName, InputStream is)Parameters
sParamName
- The parameter name.
sFileName
- The name of the file on the target system.
is
- The object containing the data you want to read.
Returns
Returns
true
if successful.
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.