j_example.java
来自「一个十分好的java基础学习的课件」· Java 代码 · 共 33 行
JAVA
33 行
// ////////////////////////////////////////////////////////
//
// J_Example.java
//
// ////////////////////////////////////////////////////////
import java.io.*;
public class J_Example
{
public static void main(String args[])
{
int i;
byte[] b=new byte[10];
try
{
FileOutputStream f =new FileOutputStream("out.txt");
for (i=0;i<10;i++)
b[i]=(byte)(48+i);
f.write(b);
f.close( );
}
catch(Exception e)
{
System.out.println(e);
} // End of try/catch structure.
} // End of method: main
} // End of class: J_Example
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?