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

📄 j_example.java

📁 一个十分好的java基础学习的课件
💻 JAVA
字号:
// ////////////////////////////////////////////////////////
// 
// J_Example.java
// 

// ////////////////////////////////////////////////////////

import java.io.OutputStream; 
import java.io.IOException; 

public class J_Example
{

    public static void main(String args[])
    {
        String s = "Wonderful OutputStream!";
        byte[] b;
        OutputStream out= System.out;
        
        b = s.getBytes( );  
        try
        {
            out.write(b);
            out.flush( );
        }
        catch (IOException e)
        {
            System.err.println(e);
        } // End of try/catch structure.
    } // End of method: main

} // End of class: J_Example

⌨️ 快捷键说明

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