Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for writeObject (0.2 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

            try {
                ByteArrayOutputStream bos = new ByteArrayOutputStream();
                ASN1OutputStream dos = ASN1OutputStream.create(bos, ASN1Encoding.DER);
                dos.writeObject(new DERSequence(mechs));
                dos.close();
                return bos.toByteArray();
            }
            catch ( IOException e ) {
                throw new CIFSException("Failed to encode mechList", e);
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/collection/ArrayMap.java

            }
    
            @Override
            public void writeExternal(final ObjectOutput s) throws IOException {
                s.writeInt(hashCode);
                s.writeObject(key);
                s.writeObject(value);
                s.writeObject(next);
            }
    
            @SuppressWarnings("unchecked")
            @Override
            public void readExternal(final ObjectInput s) throws IOException, ClassNotFoundException {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/core/collection/SLinkedList.java

        }
    
        @Override
        public void writeExternal(final ObjectOutput s) throws IOException {
            s.writeInt(size);
            for (Entry e = header.next; e != header; e = e.next) {
                s.writeObject(e.element);
            }
        }
    
        @SuppressWarnings("unchecked")
        @Override
        public void readExternal(final ObjectInput s) throws IOException, ClassNotFoundException {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11K bytes
    - Viewed (1)
Back to top