Java OutputStream Write Int writeInt(OutputStream buffer, int val)

Here you can find the source of writeInt(OutputStream buffer, int val)

Description

write Int

License

Open Source License

Declaration

public static void writeInt(OutputStream buffer, int val) throws IOException 

Method Source Code

//package com.java2s;
/*/* www.ja v  a 2s.  com*/
 * Copyright (c) 2016 acmi
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

import java.io.*;

public class Main {
    public static void writeInt(OutputStream buffer, int val) throws IOException {
        new DataOutputStream(buffer).writeInt(Integer.reverseBytes(val));
    }
}

Related

  1. writeInt(final OutputStream out, final int value)
  2. writeInt(final OutputStream outputStream, final int integer)
  3. writeInt(int data, int length, OutputStream out)
  4. writeInt(int v, OutputStream stream)
  5. writeInt(int v, OutputStream stream)
  6. writeInt(OutputStream buffer, int value)
  7. writeInt(OutputStream dest, int val)
  8. writeInt(OutputStream file, int value)
  9. writeInt(OutputStream os, int n)