Package com.graphdbapi.file
Interface BufferedWriterObject
-
- All Superinterfaces:
java.lang.AutoCloseable
public interface BufferedWriterObject extends java.lang.AutoCloseable
用于IO的BufferedWriter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
flush()
刷新void
write(java.lang.String value)
写string值
-
-
-
Method Detail
-
write
void write(java.lang.String value) throws GraphDbFileIOException
写string值- Parameters:
value
- 背写的字符串- Throws:
GraphDbFileIOException
- IO异常
-
flush
void flush() throws GraphDbFileIOException
刷新- Throws:
GraphDbFileIOException
- IO异常
-
-