Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code LNG204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.
org.omg.CORBA.portable

Class OutputStream

  • All Implemented Interfaces:
    Closeable, Flushable, AutoCloseable
    Direct Known Subclasses:
    OutputStream

    public abstract class OutputStream
    extends OutputStream
    OuputStream is the Java API for writing IDL types to CDR marshal streams. These methods are used by the ORB to marshal IDL types as well as to insert IDL types into Anys. The _array versions of the methods can be directly used to write sequences and arrays of IDL types.
    Since:
    JDK1.2
    • Constructor Detail

      • OutputStream

        public OutputStream()
    • Method Detail

      • create_input_stream

        public abstract InputStream create_input_stream()
        Returns an input stream with the same buffer.
        Returns:
        an input stream with the same buffer.
      • write_boolean

        public abstract void write_boolean(boolean value)
        Writes a boolean value to this stream.
        Parameters:
        value - the value to be written.
      • write_char

        public abstract void write_char(char value)
        Writes a char value to this stream.
        Parameters:
        value - the value to be written.
      • write_wchar

        public abstract void write_wchar(char value)
        Writes a wide char value to this stream.
        Parameters:
        value - the value to be written.
      • write_octet

        public abstract void write_octet(byte value)
        Writes a CORBA octet (i.e. byte) value to this stream.
        Parameters:
        value - the value to be written.
      • write_short

        public abstract void write_short(short value)
        Writes a short value to this stream.
        Parameters:
        value - the value to be written.
      • write_ushort

        public abstract void write_ushort(short value)
        Writes an unsigned short value to this stream.
        Parameters:
        value - the value to be written.
      • write_long

        public abstract void write_long(int value)
        Writes a CORBA long (i.e. Java int) value to this stream.
        Parameters:
        value - the value to be written.
      • write_ulong

        public abstract void write_ulong(int value)
        Writes an unsigned CORBA long (i.e. Java int) value to this stream.
        Parameters:
        value - the value to be written.
      • write_longlong

        public abstract void write_longlong(long value)
        Writes a CORBA longlong (i.e. Java long) value to this stream.
        Parameters:
        value - the value to be written.
      • write_ulonglong

        public abstract void write_ulonglong(long value)
        Writes an unsigned CORBA longlong (i.e. Java long) value to this stream.
        Parameters:
        value - the value to be written.
      • write_float

        public abstract void write_float(float value)
        Writes a float value to this stream.
        Parameters:
        value - the value to be written.
      • write_double

        public abstract void write_double(double value)
        Writes a double value to this stream.
        Parameters:
        value - the value to be written.
      • write_string

        public abstract void write_string(String value)
        Writes a string value to this stream.
        Parameters:
        value - the value to be written.
      • write_wstring

        public abstract void write_wstring(String value)
        Writes a wide string value to this stream.
        Parameters:
        value - the value to be written.
      • write_boolean_array

        public abstract void write_boolean_array(boolean[] value,
                               int offset,
                               int length)
        Writes an array of booleans on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_char_array

        public abstract void write_char_array(char[] value,
                            int offset,
                            int length)
        Writes an array of chars on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_wchar_array

        public abstract void write_wchar_array(char[] value,
                             int offset,
                             int length)
        Writes an array of wide chars on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_octet_array

        public abstract void write_octet_array(byte[] value,
                             int offset,
                             int length)
        Writes an array of CORBA octets (bytes) on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_short_array

        public abstract void write_short_array(short[] value,
                             int offset,
                             int length)
        Writes an array of shorts on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_ushort_array

        public abstract void write_ushort_array(short[] value,
                              int offset,
                              int length)
        Writes an array of unsigned shorts on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_long_array

        public abstract void write_long_array(int[] value,
                            int offset,
                            int length)
        Writes an array of CORBA longs (i.e. Java ints) on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_ulong_array

        public abstract void write_ulong_array(int[] value,
                             int offset,
                             int length)
        Writes an array of unsigned CORBA longs (i.e. Java ints) on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_longlong_array

        public abstract void write_longlong_array(long[] value,
                                int offset,
                                int length)
        Writes an array of CORBA longlongs (i.e. Java longs) on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_ulonglong_array

        public abstract void write_ulonglong_array(long[] value,
                                 int offset,
                                 int length)
        Writes an array of unsigned CORBA longlongs (i.e. Java ints) on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_float_array

        public abstract void write_float_array(float[] value,
                             int offset,
                             int length)
        Writes an array of floats on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_double_array

        public abstract void write_double_array(double[] value,
                              int offset,
                              int length)
        Writes an array of doubles on this output stream.
        Parameters:
        value - the array to be written.
        offset - offset on the stream.
        length - length of buffer to write.
      • write_Object

        public abstract void write_Object(Object value)
        Writes a CORBA Object on this output stream.
        Parameters:
        value - the value to be written.
      • write_TypeCode

        public abstract void write_TypeCode(TypeCode value)
        Writes a TypeCode on this output stream.
        Parameters:
        value - the value to be written.
      • write_any

        public abstract void write_any(Any value)
        Writes an Any on this output stream.
        Parameters:
        value - the value to be written.
      • write_Principal

        @Deprecated
        public void write_Principal(Principal value)
        Deprecated. Deprecated by CORBA 2.2.
        Writes a Principle on this output stream.
        Parameters:
        value - the value to be written.
      • write_fixed

        public void write_fixed(BigDecimal value)
        Writes a BigDecimal number.
        Parameters:
        value - a BidDecimal--value to be written.
      • write_Context

        public void write_Context(Context ctx,
                         ContextList contexts)
        Writes a CORBA context on this stream. The Context is marshaled as a sequence of strings. Only those Context values specified in the contexts parameter are actually written.
        Parameters:
        ctx - a CORBA context
        contexts - a ContextList object containing the list of contexts to be written
        See Also:
        portable package comments for unimplemented features

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-org/omg/CORBA/portable/OutputStream.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut