response = new HashMap<Object, Object>();
}
OutputStream newContents = uriConverter.createOutputStream(getURI(), new ExtensibleURIConverterImpl.OptionsMap(URIConverter.OPTION_RESPONSE, response, options, defaultSaveOptions));
try
{
InputStream temporaryFileContents = uriConverter.createInputStream(temporaryFileURI, null);
try
{
for (int length = temporaryFileContents.read(newContentBuffer); length > 0; length = temporaryFileContents.read(newContentBuffer))
{
newContents.write(newContentBuffer, 0, length);