Package org.eclipse.jetty.util
Class RolloverFileOutputStream
java.lang.Object
java.io.OutputStream
org.eclipse.jetty.util.RolloverFileOutputStream
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
RolloverFileOutputStream.
This output stream puts content in a file that is rolled over every 24 hours. The filename must include the string "yyyy_mm_dd", which is replaced with the actual date when creating and rolling over the file.
Old files are retained for a number of days before being deleted.
-
Constructor Summary
ConstructorsConstructorDescriptionRolloverFileOutputStream(String filename) Deprecated.RolloverFileOutputStream(String filename, boolean append) Deprecated.RolloverFileOutputStream(String filename, boolean append, int retainDays) Deprecated.RolloverFileOutputStream(String filename, boolean append, int retainDays, TimeZone zone) Deprecated.RolloverFileOutputStream(String filename, boolean append, int retainDays, TimeZone zone, String dateFormat, String backupFormat) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Deprecated.voidflush()Deprecated.Deprecated.Deprecated.intDeprecated.static ZonedDateTimetoMidnight(ZonedDateTime now) Deprecated.Get the "start of day" for the provided DateTime at the zone specified.voidwrite(byte[] buf) Deprecated.voidwrite(byte[] buf, int off, int len) Deprecated.voidwrite(int b) Deprecated.Methods inherited from class java.io.OutputStream
nullOutputStream
-
Constructor Details
-
RolloverFileOutputStream
Deprecated.- Parameters:
filename- The filename must include the string "yyyy_mm_dd", which is replaced with the actual date when creating and rolling over the file.- Throws:
IOException- if unable to create output
-
RolloverFileOutputStream
Deprecated.- Parameters:
filename- The filename must include the string "yyyy_mm_dd", which is replaced with the actual date when creating and rolling over the file.append- If true, existing files will be appended to.- Throws:
IOException- if unable to create output
-
RolloverFileOutputStream
Deprecated.- Parameters:
filename- The filename must include the string "yyyy_mm_dd", which is replaced with the actual date when creating and rolling over the file.append- If true, existing files will be appended to.retainDays- The number of days to retain files before deleting them. 0 to retain forever.- Throws:
IOException- if unable to create output
-
RolloverFileOutputStream
public RolloverFileOutputStream(String filename, boolean append, int retainDays, TimeZone zone) throws IOException Deprecated.- Parameters:
filename- The filename must include the string "yyyy_mm_dd", which is replaced with the actual date when creating and rolling over the file.append- If true, existing files will be appended to.retainDays- The number of days to retain files before deleting them. 0 to retain forever.zone- the timezone for the output- Throws:
IOException- if unable to create output
-
RolloverFileOutputStream
public RolloverFileOutputStream(String filename, boolean append, int retainDays, TimeZone zone, String dateFormat, String backupFormat) throws IOException Deprecated.- Parameters:
filename- The filename must include the string "yyyy_mm_dd", which is replaced with the actual date when creating and rolling over the file.append- If true, existing files will be appended to.retainDays- The number of days to retain files before deleting them. 0 to retain forever.zone- the timezone for the outputdateFormat- The format for the date file substitution. The default is "yyyy_MM_dd". If set to the empty string, the file is rolledover to the same filename, with the current file being renamed to the backup filename.backupFormat- The format for the file extension of backup files. The default is "HHmmssSSS".- Throws:
IOException- if unable to create output
-
-
Method Details
-
toMidnight
Deprecated.Get the "start of day" for the provided DateTime at the zone specified.- Parameters:
now- the date time to calculate from- Returns:
- start of the day of the date provided
-
getFilename
Deprecated. -
getDatedFilename
Deprecated. -
getRetainDays
public int getRetainDays()Deprecated. -
write
Deprecated.- Specified by:
writein classOutputStream- Throws:
IOException
-
write
Deprecated.- Overrides:
writein classOutputStream- Throws:
IOException
-
write
Deprecated.- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
Deprecated.- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
close
Deprecated.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-