Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. src/main/java/org/codelibs/core/io/SerializeUtil.java

            try {
                final ByteArrayOutputStream baos = new ByteArrayOutputStream(BYTE_ARRAY_SIZE);
                final ObjectOutputStream oos = new ObjectOutputStream(baos);
                try {
                    oos.writeObject(obj);
                } finally {
                    oos.close();
                }
                return baos.toByteArray();
            } catch (final IOException ex) {
                throw new IORuntimeException(ex);
            }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  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