Java File Write via ByteBuffer writeLong(OutputStream os, Long d)

Here you can find the source of writeLong(OutputStream os, Long d)

Description

write Long

License

Open Source License

Declaration

public static void writeLong(OutputStream os, Long d) throws IOException 

Method Source Code


//package com.java2s;
/*//from  w ww.ja v a 2  s . c  o  m
 *  Copyright (C) 2011-2013 The Animo Project
 *  http://animotron.org
 *
 *  This file is part of Animotron.
 *
 *  Animotron is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU Affero General Public License as
 *  published by the Free Software Foundation, either version 3 of
 *  the License, or (at your option) any later version.
 *
 *  Animotron is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Affero General Public License for more details.
 *
 *  You should have received a copy of
 *  the GNU Affero General Public License along with Animotron.
 *  If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.*;
import java.nio.ByteBuffer;

public class Main {
    public final static byte LONG = 1;

    public static void writeLong(OutputStream os, Long d) throws IOException {
        os.write(LONG);
        byte[] b = new byte[8];
        ByteBuffer.wrap(b).putLong(d);
        os.write(b);
    }
}

Related

  1. writeInt(OutputStream out, int i)
  2. writeInt(WritableByteChannel channel, int val)
  3. writeInt(WritableByteChannel channel, int value)
  4. writeInt(WritableByteChannel channel, int value)
  5. writeLong(OutputStream in, long i)
  6. writeLong(RandomAccessFile raFile, long num)
  7. writeObject(Serializable serializable)
  8. writeShort(int i, DataOutput out)
  9. writeString(ByteArrayOutputStream bout, String val)