Home > Contents > Index >
FormPoster.setEncodeURL
Sets the target URL to which the information will ultimately be transmitted via the HTTP GET mechanism.
Syntax
public boolean
setEncodeURL(String URL)
Parameters
URL
- The URL to which the message is to be transmitted; the URL should include the payload.
Description
Call
setEncodeURL
to establish the taget URL to which information will ultimately be transmitted when thepost
method executes. If you usesetEncodeURL
to establish the URL, thepost
method will transmit the information via the HTTP GET method. To transmit a message via the HTTP POST method, establish the target URL withsetURL
instead.Because the HTTP GET method will ultimately be used, you must pass name/value pairs within
URL
. ThesetEncodeURL
method ensures that the values are appropriately encoded. For example, if a space appears in the value portion ofURL
,setEncodeURL
will translate it to%20
.Returns
Returns
true
ifURL
has valid URL format; otherwise, returnsfalse
.Example
The following registers a URL (
target.oracle.com
) and two two name/value pairs:
boolean result; result = FP.setEncodeURL("http://target.oracle.com?a=12&b=7");See Also
post , setEncodeURL , setURL
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.