public final class DiskLruCache.Editor extends Object
| 限定符和类型 | 方法和说明 | 
|---|---|
void | 
abort()
Aborts this edit. 
 | 
void | 
commit()
Commits this edit so it is visible to readers. 
 | 
String | 
getString(int index)
Returns the last committed value as a string, or null if no value
 has been committed. 
 | 
InputStream | 
newInputStream(int index)
Returns an unbuffered input stream to read the last committed value,
 or null if no value has been committed. 
 | 
OutputStream | 
newOutputStream(int index)
Returns a new unbuffered output stream to write the value at
  
index. | 
void | 
set(int index,
   String value)
Sets the value at  
index to value. | 
public InputStream newInputStream(int index) throws IOException
IOExceptionpublic String getString(int index) throws IOException
IOExceptionpublic OutputStream newOutputStream(int index) throws IOException
index. If the underlying output stream encounters errors
 when writing to the filesystem, this edit will be aborted when
 commit() is called. The returned output stream does not throw
 IOExceptions.IOExceptionpublic void set(int index,
                String value)
         throws IOException
index to value.IOExceptionpublic void commit()
            throws IOException
IOExceptionpublic void abort()
           throws IOException
IOException