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

📄 iotest.java

📁 贪食蛇的实现源码
💻 JAVA
字号:
package houqi;
import java.io.*;
public class IoTest {
	
	
	  public static void main(String[] args) {
	    FileInputStream fis;
	    DataInputStream dis;
	   // File f=new File("E:/新建文件夹/IoTest.txt");
	    File f=new File("IoTest1.txt");
	    try {
	      fis = new FileInputStream("Test1.txt");    
	      dis = new DataInputStream( fis );

	     
	      int num;
	       
	      for (int i=0; i<10; i++){ 
	        num = dis.readInt();
	         System.out.println( "read: " + num );
	         
	      }
	    } catch (EOFException eof)
	      {System.out.println( "EOF reached " ); }
	      catch (IOException ioe)
	      {System.out.println( "IO error: " + ioe );}
	  }
	}
 

⌨️ 快捷键说明

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