Home > Contents > Index >
FormPoster.findCookie
Finds a specific cookie in the HTTP response, where the cookie name starts with the specified prefix.
Syntax
public static String findCookie(String data, String prefix)Parameters
data
- HTTP response string.
prefix
- Prefix string for the cookie.
Returns
The cookie string.
Example
FormPoster fp = new FormPoster(); FTValList vlCookies; fp.setURL("http://myserver/servlet/CatalogManager"); // Add a new row to MyTable FTStatusCode ftStatus = new FTStatusCode(); status = fp.login(true, ftStatus, "myusername", "mypassword"); String sCookie = fp.findCookie("mycookieprefix", fp.getResponse()); Status = fp.addFile("url", "test.html", "/export/home/temp/test.html", "text/html"); Status = fp.addTextValue("tblname", "MyTable"); Status = fp.addURL("myparameter", "http://server/main.html"); Status = fp.addTextValue("id", "1323"); Status = fp.addTextValue("ftcmd", "addrow"); Status = fp.post(); // Fetch the response without the http headers CleanResponse = fp.cleanRawResponse(true); fp.login(false, ftStatus, null, null);See Also
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.