Package | Description |
---|---|
com.teamdev.jxbrowser.navigation |
Contains classes and interfaces for working with navigation.
|
com.teamdev.jxbrowser.net |
Contains classes and interfaces for working with network.
|
com.teamdev.jxbrowser.net.callback |
The network service callbacks.
|
Modifier and Type | Method and Description |
---|---|
LoadUrlParams.Builder |
LoadUrlParams.Builder.uploadData(ByteData data)
Sets the upload data as a sequence of bytes that will be sent to the resource.
|
Modifier and Type | Method and Description |
---|---|
static ByteData |
ByteData.of(byte[] data)
Creates an instance of
ByteData with the given upload data bytes. |
static ByteData |
ByteData.of(byte[] data,
ContentType contentType)
Creates an instance of
ByteData with the given upload data bytes and content type. |
static ByteData |
ByteData.of(java.lang.String data)
Creates an instance of
ByteData with the given upload data bytes. |
static ByteData |
ByteData.of(java.lang.String data,
ContentType contentType)
Creates an instance of
ByteData with the given upload data bytes and content type. |
Modifier and Type | Method and Description |
---|---|
static BeforeSendUploadDataCallback.Response |
BeforeSendUploadDataCallback.Response.override(ByteData byteData)
Notifies the engine that the upload data in the URL request should be replaced with the
given one.
|