Home > Contents > Index >
FormPoster.getResponse
Gets the string response from the server after calling
post()
to post a request.Syntax
String getResponse()Description
The
getResponse
method gets the string response from the server after callingpost()
to post a request.getResponse()
is similar togetRawResponse
, except the output is returned as a string rather than as a byte array.Returns
A string response.
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"); vlCookies = fp.findAllCookies(); 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"); fp.setCookies(vlCookies); Status = fp.post(); int nLastErrorCode = fp.getLastError(); String sLastError = fp.getLastErrorStr(); //--- // Fetch the response String sResponse = fp.getResponse(); fp.login(false, ftStatus, null, null);See Also
cleanRawResponse,
getRawResponse,
cleanResponse
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.