⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xpfilereader.java

📁 kaffe是一个java虚拟机的源代码。里面包含了一些java例程和标准的java包。
💻 JAVA
字号:
/* Class : XPFileReader     This is a cross platform version of the java.io.FileReader class.  It uses the XPFile class to do cross platform file name conversion.  Copyright : Moses DeJong, dejong@cs.umn.edu, 1998.  Source code licensed under the GPL.  You can get a copy of the license from www.gnu.org.  This code is intended for use in the Kaffe project but you can use  it in other projects as long as you follow the license rules.*/package kaffe.tools.jar;import java.io.*;public class XPFileReader extends FileReader {    public XPFileReader(String fileName) throws FileNotFoundException    {	super( new XPFile(fileName) );    }        public XPFileReader(XPFile xpfile) throws FileNotFoundException    {	super( xpfile );    }    public XPFileReader(File file) throws FileNotFoundException    {	super( file.getPath() );    }    public XPFileReader(FileDescriptor fd)    {	super( fd );    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -