Reference for Processing version 1.2. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Javadoc.

Name

createOutput()

Description Similar to createInput(), this creates a Java OutputStream for a given filename or path. The file will be created in the sketch folder, or in the same folder as an exported application.

If the path does not exist, intermediate folders will be created. If an exception occurs, it will be printed to the console, and null will be returned.

This method is a convenience over the Java approach that requires you to 1) create a FileOutputStream object, 2) determine the exact file location, and 3) handle exceptions. Exceptions are handled internally by the function, which is more appropriate for "sketch" projects.

If the output filename ends with .gz, the output will be automatically GZIP compressed as it is written.
Syntax
createOutput(filename)
Parameters
filename String: name of the file to open
Returns OutputStream or null
Usage Application
Related createInput()
selectOutput()
Updated on June 14, 2010 12:05:29pm EDT

Creative Commons License