ByteBuffer: putInt(int i) : ByteBuffer « java.nio « Java by API






ByteBuffer: putInt(int i)

   
/*
 * Output:
 

 */

import java.io.File;
import java.io.FileOutputStream;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

public class MainClass {
  public static void main(String[] args) {
    try {
      File aFile = new File("test.txt");

      FileOutputStream outputFile = null;
      outputFile = new FileOutputStream(aFile, true);
      FileChannel outChannel = outputFile.getChannel();

      ByteBuffer buf = ByteBuffer.allocate(200);

      buf.putInt(10).asCharBuffer().put("www.java2s.com");

      buf.position(10).flip();
      outChannel.write(buf);
      buf.clear();

      outputFile.close();

    } catch (Exception e) {
      e.printStackTrace();

    }

  }
}

           
         
    
    
  








Related examples in the same category

1.ByteBuffer: allocate(int capacity)
2.ByteBuffer: allocateDirect(int size)
3.ByteBuffer: asCharBuffer()
4.ByteBuffer: asDoubleBuffer()
5.ByteBuffer: asFloatBuffer()
6.ByteBuffer: asLongBuffer()
7.ByteBuffer: asShortBuffer()
8.ByteBuffer: capacity()
9.ByteBuffer: clear()
10.ByteBuffer: compact()
11.ByteBuffer: flip()
12.ByteBuffer: get()
13.ByteBuffer: get(byte[] dst, int offset, int length)
14.ByteBuffer: get(int index)
15.ByteBuffer: getChar()
16.ByteBuffer: getDouble()
17.ByteBuffer: getFloat()
18.ByteBuffer: getInt()
19.ByteBuffer: getLong()
20.ByteBuffer: isDirect()
21.ByteBuffer: limit()
22.ByteBuffer: order()
23.ByteBuffer: order(ByteOrder bo)
24.ByteBuffer: position()
25.ByteBuffer: position(int newPosition)
26.ByteBuffer: put(byte b)
27.ByteBuffer: putChar(char ch)
28.ByteBuffer: putDouble(double value)
29.ByteBuffer: putFloat(float value)
30.ByteBuffer: putLong(long value)
31.ByteBuffer: putShort(short value)
32.ByteBuffer: putShort(int index, short value)
33.ByteBuffer: rewind()
34.ByteBuffer: wrap(byte[] array)