import java.io.FileDescriptor;
import java.io.InputStream;
import java.nio.channels.FileChannel;
public class FileInputStream extends InputStream {
private FileDescriptor fd;
private FileChannel channel = null;
private Object closeLock = new Object();
private volatile boolean closed = false;
private static final ThreadLocal<Boolean> runningFinalize = new ThreadLocal<Boolean>();
private static boolean isRunningFinalize() {
Boolean val;
if ((val = runningFinalize.get()) != null)
return val.booleanValue();
return false;
}
public FileInputStream(File file) throws FileNotFoundException {
String name = (file != null ? file.getPath() : null);
SecurityManager security = System.getSecurityManager();
if (security != null) {
security.checkRead(name);
}
if (name == null) {
throw new NullPointerException();
}
fd = new FileDescriptor();
fd.incrementAndGetUseCount();
open(name);
}
public FileInputStream(String name) throws FileNotFoundException {
this(name != null ? new File(name) : null);
}
public FileInputStream(FileDescriptor fdObj) {
SecurityManager security = System.getSecurityManager();
if (fdObj == null) {
throw new NullPointerException();
}
if (security != null) {
security.checkRead(fdObj);
}
fd = fdObj;
fd.incrementAndGetUseCount();
}
// 打开文件
private native void open(String name) throws FileNotFoundException;
// 读取一个字节,如果没有读到数据方法将会阻塞,
// 如果数据读完,返回-1
public native int read() throws IOException;
// 读取数据存到b[]中
private native int readBytes(byte b[], int off, int len) throws IOException;
// 通过调用本地方法,来实现读取数据
public int read(byte b[]) throws IOException {
return readBytes(b, 0, b.length);
}
// 通过调用本地方法,来实现读取数据
public int read(byte b[], int off, int len) throws IOException {
return readBytes(b, off, len);
}
public native long skip(long n) throws IOException;
public native int available() throws IOException;
public void close() throws IOException {
synchronized (closeLock) {
if (closed) {
return;
}
closed = true;
}
if (channel != null) {
fd.decrementAndGetUseCount();
channel.close();
}
int useCount = fd.decrementAndGetUseCount();
if ((useCount <= 0) || !isRunningFinalize()) {
close0();
}
}
public final FileDescriptor getFD() throws IOException {
if (fd != null)
return fd;
throw new IOException();
}
public FileChannel getChannel() {
synchronized (this) {
if (channel == null) {
channel = FileChannelImpl.open(fd, true, false, this);
fd.incrementAndGetUseCount();
}
return channel;
}
}
//本地方法
private static native void initIDs();
//本地方法
private native void close0() throws IOException;
//静态初始化块
static {
initIDs();
}
protected void finalize() throws IOException {
if ((fd != null) && (fd != FileDescriptor.in)) {
runningFinalize.set(Boolean.TRUE);
try {
close();
} finally {
runningFinalize.set(Boolean.FALSE);
}
}
}
}
分享到:
相关推荐
这里我们关注的是28个常用的Java工具类源码,它们涵盖了数据处理、字符串操作、集合操作等多个方面。了解并深入学习这些工具类的源码,对于提升编程技能、理解Java内部机制以及优化代码性能有着巨大的帮助。 首先,...
至于sun目录下的源码,它包含了Oracle JDK特有的实现,如JNI(Java Native Interface)、JVM(Java虚拟机)的内部实现以及一些与操作系统紧密相关的类。这部分源码不公开,但可以通过反编译工具如CFR(Class File ...
6. **文件操作**:如果应用选择将便签数据存储为文本文件,那么源码会包含关于读写文件的相关操作,如FileOutputStream和FileInputStream的使用。 7. **权限管理**:Android应用需要在AndroidManifest.xml文件中...
9. **IO流**:Java的IO系统强大,源码会涉及FileInputStream、OutputStream、BufferedReader、Writer等类的使用,包括文件读写、网络通信等。 10. **多线程**:Java提供了丰富的多线程支持,包括Thread、Runnable...
源码中会包含文件路径的设定和文件的读写操作,这可能涉及到`FileOutputStream`、`FileInputStream`以及`ParcelFileDescriptor`等类。 4. 用户界面(UI)设计: 小米录音机源码中应有UI组件的布局和交互逻辑,如...
在Web开发中,文件上传是一项常见的功能,而File类和FileInputStream则是处理文件的基础工具。以下是关于这三个概念的详细解释: 1. **Java文件上传**: 文件上传在Java Web应用中通常涉及到客户端将本地文件发送...
源码会包含FileInputStream、FileOutputStream、BufferedReader、BufferedWriter等类的使用示例。 6. **多线程**:Java支持多线程编程,源码中会有Thread类、Runnable接口的实例,以及同步控制(synchronized关键字...
源码可能涉及FileInputStream、FileOutputStream、BufferedReader、BufferedWriter等的使用,以及Channel、Selector和Buffer的NIO操作。 通过分析"Java入门学习源码"中的JavaProject,初学者可以逐步掌握上述知识点...
在安卓中,可以使用`java.io.File`的`renameTo()`方法进行移动,或者使用`FileInputStream`和`FileOutputStream`配合`read()`和`write()`方法来实现复制。 2. **用户界面**: - **Android UI组件**:源码中会包含...
4. **IO与NIO**:Java的输入/输出系统是其强大功能的一部分,源码可能会涉及FileInputStream、OutputStream、BufferedReader、PrintWriter等类,也可能包含非阻塞I/O(NIO)的相关实践。 5. **多线程**:Java提供了...
3. **I/O流**:`java.io`包提供了处理输入输出的类,如`FileInputStream`、`BufferedReader`等。源码揭示了如何进行文件读写、网络通信等操作。 4. **多线程**:`java.lang.Thread`和`java.util.concurrent`包中的...
源码包可能包含BufferedReader、BufferedWriter、FileInputStream、FileOutputStream等类的使用。 7. **算法实现**:源码包中的200多个程序可能涵盖了各种算法的Java实现,例如排序算法(如冒泡排序、快速排序、...
源码中会涵盖FileInputStream、FileOutputStream、BufferedReader、PrintWriter等类的使用,以及NIO(非阻塞I/O)的相关内容。 6. **多线程**:Java提供了强大的多线程支持,包括Thread类、Runnable接口,以及...
源码会涵盖FileInputStream、FileOutputStream、BufferedReader和PrintWriter等类的使用。 7. **多线程**:Java支持多线程编程,你可以通过Thread类或者实现Runnable接口来创建线程。源码中会包含同步控制、线程间...
5. **输入输出流**:Java的IO流系统用于读写数据,源码中会有FileInputStream、FileOutputStream、BufferedReader、BufferedWriter等类的实例,演示如何进行文件操作和数据传输。 6. **多线程**:Java支持多线程...
开发者可能实现了读取本地TXT文件的功能,这涉及到了文件系统的操作,如使用`File`和`FileInputStream`类。此外,源码可能包含了分页、搜索、高亮显示关键字等功能,这些都是Android UI设计和数据处理的重要知识点。...
Android提供了`java.io.File`和`java.io.FileInputStream`等类来处理文件操作。源码中可能会使用`setDataSource()`方法,将MP3文件的路径传递给`MediaPlayer`实例。 再者,UI设计是用户与播放器交互的界面。通常,...
深入源码,我们可以看到如何定义和使用类以及类之间的继承关系。 2. **封装、继承和多态**:这是面向对象编程的三大特性。封装使数据和方法结合在一起,保护数据不受外部直接访问;继承则允许子类继承父类的属性和...
如果音乐播放器支持本地音乐库,源码可能会包含读取和管理SD卡上音乐文件的方法,如使用`File`和`FileInputStream`进行文件操作。 10. **音乐播放控制事件** 用户交互如点击播放/暂停按钮,切换歌曲等,都需要...