mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-06 18:58:13 +00:00
Searching in browsers cache (Chrome, Firefox)
This commit is contained in:
32
trunk/src/com/jpexs/browsers/cache/RafInputStream.java
vendored
Normal file
32
trunk/src/com/jpexs/browsers/cache/RafInputStream.java
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
package com.jpexs.browsers.cache;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.RandomAccessFile;
|
||||
import java.util.logging.Level;
|
||||
import java.util.logging.Logger;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class RafInputStream extends InputStream {
|
||||
|
||||
private RandomAccessFile raf;
|
||||
private long pos = 0;
|
||||
|
||||
public RafInputStream(RandomAccessFile raf) {
|
||||
this.raf = raf;
|
||||
try {
|
||||
pos = raf.getFilePointer();
|
||||
} catch (IOException ex) {
|
||||
Logger.getLogger(RafInputStream.class.getName()).log(Level.SEVERE, null, ex);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int read() throws IOException {
|
||||
raf.seek(pos++);
|
||||
return raf.read();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user