loadStateFromString
boolean session.loadStateFromString ( String stateXML ) (professional and enterprise editions only)
Description
Loads the state that would have been previously saved by invoking the session.saveStateToString method.
Parameters
- stateXML A string representing session state.
Return Values
None
Change Log
Version | Description |
---|---|
5.5.30a | Available in Professional and Enterprise editions. |
Examples
Load state in from a file
import org.apache.commons.io.FileUtils;
File f = new File( "session_state.xml" );
sessionState = FileUtils.readFileToString( f, session.getCharacterSet() );
session.loadStateFromString( sessionState );
File f = new File( "session_state.xml" );
sessionState = FileUtils.readFileToString( f, session.getCharacterSet() );
session.loadStateFromString( sessionState );
todd on 03/08/2012 at 3:03 pm
- Printer-friendly version
- Login or register to post comments