PageRenderTime 26ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-3-pre5/bsh/commands/load.bsh

#
Unknown | 22 lines | 17 code | 5 blank | 0 comment | 0 complexity | 3e0ebe34a8954f5b4d25e07502b7131b MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /**
  2. Load a serialized Java object from filename. Returns the object.
  3. */
  4. bsh.help.load = "usage: load(filename)";
  5. Object load( String filename )
  6. {
  7. this.file = pathToFile( filename );
  8. Object obj;
  9. FileInputStream in = new FileInputStream( file );
  10. ObjectInputStream oin = new ObjectInputStream(in);
  11. obj = oin.readObject();
  12. oin.close();
  13. // bind bsh objects into the caller's namespace
  14. if ( obj instanceof bsh.This )
  15. bind( obj, this.caller.namespace );
  16. return obj;
  17. }