jdk1.7最全源代码


java1.7最全源代码,包括rt.jar windows平台的源代码,源码
资源截图
代码片段和文件信息
/*
 * Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the “Classpath“ exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not write to the Free Software Foundation
 * Inc. 51 Franklin St Fifth Floor Boston MA 02110-1301 USA.
 *
 * Please contact Oracle 500 Oracle Parkway Redwood Shores CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package com.oracle.net;

import java.net.Socket;
import java.net.ServerSocket;
import java.net.SocketImpl;
import java.net.SocketImplFactory;
import java.net.SocketException;
import java.nio.channels.SocketChannel;
import java.nio.channels.ServerSocketChannel;
import java.io.IOException;
import java.io.FileDescriptor;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.lang.reflect.Constructor;
import java.lang.reflect.Accessibleobject;
import java.lang.reflect.InvocationTargetException;

import sun.net.sdp.SdpSupport;

/**
 * This class consists exclusively of static methods that Sockets or Channels to
 * sockets that support the InfiniBand Sockets Direct Protocol (SDP).
 */

public final class Sdp {
    private Sdp() { }

    /**
     * The package-privage ServerSocket(SocketImpl) constructor
     */
    private static final Constructor serverSocketCtor;
    static {
        try {
            serverSocketCtor = (Constructor
                ServerSocket.class.getDeclaredConstructor(SocketImpl.class);
            setAccessible(serverSocketCtor);
        } catch (NoSuchMethodException e) {
            throw new Assertionerror(e);
        }
    }

    /**
     * The package-private SdpSocketImpl() constructor
     */
    private static final Constructor socketImplCtor;
    static {
        try {
            Class cl = Class.forName(“java.net.SdpSocketImpl“ true null);
            socketImplCtor = (Constructor)cl.getDeclaredConstructor();
            setAccessible(socketImplCtor);
        } catch (ClassNotFoundException e) {
            throw new Assertionerror(e);
        } catch (NoSuchMethodException e) {
            throw new Assertionerror(e);
        }
    }

    p

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-19 22:30  com
     目录           0  2018-05-19 22:30  comoracle
     目录           0  2018-05-19 22:30  comoracle
et
     文件        6940  2011-06-28 04:21  comoracle
etSdp.java
     目录           0  2018-05-19 22:30  comsun
     目录           0  2018-05-19 22:30  comsunaccessibility
     目录           0  2018-05-19 22:30  comsunaccessibilityinternal
     目录           0  2018-05-19 22:30  comsunaccessibilityinternal
esources
     文件        2713  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility.properties
     文件        3013  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_de.properties
     文件        2660  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_en.properties
     文件        3132  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_es.properties
     文件        3312  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_fr.properties
     文件        3119  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_it.properties
     文件        4532  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_ja.properties
     文件        4035  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_ko.properties
     文件        3240  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_pt_BR.properties
     文件        2920  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_sv.properties
     文件        3501  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_zh_CN.properties
     文件        3733  2011-06-28 04:21  comsunaccessibilityinternal
esourcesaccessibility_zh_TW.properties
     目录           0  2018-05-19 22:30  comsunawt
     文件       19871  2011-06-28 04:21  comsunawtAWTUtilities.java
     文件        7653  2011-06-28 04:21  comsunawtSecurityWarning.java
     目录           0  2018-05-19 22:30  comsuneans
     目录           0  2018-05-19 22:30  comsuneansdecoder
     文件        3598  2011-06-28 04:21  comsuneansdecoderAccessorElementHandler.java
     文件        4598  2011-06-28 04:21  comsuneansdecoderArrayElementHandler.java
     文件        2696  2011-06-28 04:21  comsuneansdecoderBooleanElementHandler.java
     文件        2390  2011-06-28 04:21  comsuneansdecoderByteElementHandler.java
     文件        3338  2011-06-28 04:21  comsuneansdecoderCharElementHandler.java
     文件        2381  2011-06-28 04:21  comsuneansdecoderClassElementHandler.java
............此处省略13370个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)