アットウィキロゴ

がめ0720

import java.io.*;

class game0721{
    public static void main(String[] args) {
        try {
            FileInputStream in = new FileInputStream("sound.wav");
            int ch;
            while ((ch = in.read()) != -1) {
                System.out.print(Integer.toHexString(ch) + " ");
            }
            in.close();
        } catch (IOException e) {
            System.out.println(e);
        }
    }
}
最終更新:2011年02月27日 17:22