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

📄 showfile.java

📁 JSP课程设计案例精编》-杨昭-源代码-好不容易找到的
💻 JAVA
字号:
import java.io.*;
class ShowFile {
  	public static void main(String args[]) throws IOException
  	{
    		int i;
    		FileInputStream fin;
    		try {
      		fin = new FileInputStream(args[0]);
    		} catch(FileNotFoundException e) {
      		System.out.println("File Not Found");
      		return;
    		} catch(ArrayIndexOutOfBoundsException e) {
      		System.out.println("Usage: ShowFile File");
      		return;
    		}
    		// read characters until EOF is encountered
    		do {
      		i = fin.read();
      		if(i != -1) System.out.print((char) i);
    		} while(i != -1);
    		fin.close();
  	}
}

⌨️ 快捷键说明

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