pyspark.sql.DataFrameWriter.json#
- DataFrameWriter.json(path, mode=None, compression=None, dateFormat=None, timestampFormat=None, lineSep=None, encoding=None, ignoreNullFields=None)[source]#
- Saves the content of the - DataFramein JSON format (JSON Lines text format or newline-delimited JSON) at the specified path.- New in version 1.4.0. - Changed in version 3.4.0: Supports Spark Connect. - Parameters
- pathstr
- the path in any Hadoop supported file system 
- modestr, optional
- specifies the behavior of the save operation when data already exists. - append: Append contents of this- DataFrameto existing data.
- overwrite: Overwrite existing data.
- ignore: Silently ignore this operation if data already exists.
- erroror- errorifexists(default case): Throw an exception if data already exists.
 
 
- Other Parameters
- Extra options
- For the extra options, refer to Data Source Option for the version you use. 
 
 - Examples - Write a DataFrame into a JSON file and read it back. - >>> import tempfile >>> with tempfile.TemporaryDirectory(prefix="json") as d: ... # Write a DataFrame into a JSON file ... spark.createDataFrame( ... [{"age": 100, "name": "Hyukjin Kwon"}] ... ).write.json(d, mode="overwrite") ... ... # Read the JSON file as a DataFrame. ... spark.read.format("json").load(d).show() +---+------------+ |age| name| +---+------------+ |100|Hyukjin Kwon| +---+------------+