Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.io.ByteArrayOutputStream;
import java.io.IOException;

public class Main {
    public static void main(String[] args) throws IOException {

        byte[] bs = { 65, 66, 67, 68, 69 };

        ByteArrayOutputStream baos = new ByteArrayOutputStream();

        baos.write(bs);

        String str = baos.toString();

        System.out.println(str);

    }
}