Class Properties.PropertiesWriter
- java.lang.Object
-
- java.io.Writer
-
- java.io.FilterWriter
-
- org.apache.felix.utils.properties.Properties.PropertiesWriter
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.Appendable
,java.lang.AutoCloseable
- Enclosing class:
- Properties
public static class Properties.PropertiesWriter extends java.io.FilterWriter
This class is used to write properties lines.
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
typed
-
Constructor Summary
Constructors Constructor Description PropertiesWriter(java.io.Writer writer, boolean typed)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
writeln(java.lang.String s)
Helper method for writing a line with the platform specific line ending.void
writeProperty(java.lang.String key, java.lang.String value)
Writes the given property and its value.
-
-
-
Method Detail
-
writeProperty
public void writeProperty(java.lang.String key, java.lang.String value) throws java.io.IOException
Writes the given property and its value.- Parameters:
key
- the property keyvalue
- the property value- Throws:
java.io.IOException
- if an error occurs
-
writeln
public void writeln(java.lang.String s) throws java.io.IOException
Helper method for writing a line with the platform specific line ending.- Parameters:
s
- the content of the line (may be null)- Throws:
java.io.IOException
- if an error occurs
-
-