• 大小: 39.91MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-08-03
  • 语言: 其他
  • 标签: unity  jdk  Andrid  

资源简介

unity2017.3.1配套的JDK,JDK文件名jre,自己亲测成功,为了给朋友教程,教程地址:https://blog.csdn.net/boy313918205/article/details/83415384

资源截图

代码片段和文件信息

/*
 * Copyright (c) 2005 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.
 */

/*
 * @(#)AccessBridgeCalls.c      1.25 05/08/22
 */

/*
 * Wrapper functions around calls to the AccessBridge DLL
 */


#include 
#include 


//#define ACCESSBRIDGE_32
//#define ACCESSBRIDGE_64

#include “AccessBridgeCalls.h“
#include “AccessBridgeDebug.h“

#ifdef __cplusplus
extern “C“ {
#endif

    HINSTANCE theAccessBridgeInstance;
    AccessBridgeFPs theAccessBridge;

    BOOL theAccessBridgeInitializedFlag = FALSE;

#define LOAD_FP(result type name) \
    PrintDebugString(“LOAD_FP loading: %s ...“ name); \
    if ((theAccessBridge.result = \
        (type) GetProcAddress(theAccessBridgeInstance name)) == (type) 0) { \
        PrintDebugString(“LOAD_FP failed: %s“ name); \
        return FALSE; \
    }

    BOOL initializeAccessBridge() {

#ifdef ACCESSBRIDGE_ARCH_32 // For 32bit AT new bridge
        theAccessBridgeInstance = LoadLibrary(“WINDOWSACCESSBRIDGE-32“);
#else
#ifdef ACCESSBRIDGE_ARCH_64 // For 64bit AT new bridge
                theAccessBridgeInstance = LoadLibrary(“WINDOWSACCESSBRIDGE-64“);
#else // legacy
        theAccessBridgeInstance = LoadLibrary(“WINDOWSACCESSBRIDGE“);
#endif
#endif
        if (theAccessBridgeInstance != 0) {
            LOAD_FP(Windows_run Windows_runFP “Windows_run“);

            LOAD_FP(SetJavaShutdown SetJavaShutdownFP “setJavaShutdownFP“);
            LOAD_FP(SetFocusGained SetFocusGainedFP “setFocusGainedFP“);
            LOAD_FP(SetFocusLost SetFocusLostFP “setFocusLostFP“);

            LOAD_FP(SetCaretUpdate SetCaretUpdateFP “setCaretUpdateFP“);

            LOAD_FP(SetMouseClicked SetMouseClickedFP “setMouseClickedFP“);
            LOAD_FP(SetMouseEntered SetMouseEnteredFP “setMouseEnteredFP“);
            LOAD_FP(SetMouseExited SetMouseExitedFP “setMouseExitedFP“);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1522  2017-10-20 17:01  jre\ASSEMBLY_EXCEPTION

     文件       9728  2017-10-20 17:01  jre\bin\appletviewer.exe

     文件      10240  2017-10-20 17:01  jre\bin\extcheck.exe

     文件      10240  2017-10-20 17:01  jre\bin\idlj.exe

     文件      28160  2017-10-20 17:01  jre\bin\jabswitch.exe

     文件       9728  2017-10-20 17:01  jre\bin\jar.exe

     文件      10240  2017-10-20 17:01  jre\bin\jarsigner.exe

     文件       9728  2017-10-20 17:01  jre\bin\java-rmi.exe

     文件     179712  2017-10-20 17:01  jre\bin\java.exe

     文件       9728  2017-10-20 17:01  jre\bin\javac.exe

     文件       9728  2017-10-20 17:01  jre\bin\javadoc.exe

     文件       9728  2017-10-20 17:01  jre\bin\javah.exe

     文件       9728  2017-10-20 17:01  jre\bin\javap.exe

     文件     179712  2017-10-20 17:01  jre\bin\javaw.exe

     文件       9728  2017-10-20 17:01  jre\bin\jcmd.exe

     文件      10752  2017-10-20 17:01  jre\bin\jconsole.exe

     文件      10240  2017-10-20 17:01  jre\bin\jdb.exe

     文件       9728  2017-10-20 17:01  jre\bin\jdeps.exe

     文件       9728  2017-10-20 17:01  jre\bin\jhat.exe

     文件      10240  2017-10-20 17:01  jre\bin\jinfo.exe

     文件       9728  2017-10-20 17:01  jre\bin\jjs.exe

     文件     168448  2017-10-20 17:01  jre\bin\jli.dll

     文件      10240  2017-10-20 17:01  jre\bin\jmap.exe

     文件       9728  2017-10-20 17:01  jre\bin\jps.exe

     文件      10240  2017-10-20 17:01  jre\bin\jrunscript.exe

     文件      10240  2017-10-20 17:01  jre\bin\jsadebugd.exe

     文件      10240  2017-10-20 17:01  jre\bin\jstack.exe

     文件       9728  2017-10-20 17:01  jre\bin\jstat.exe

     文件       9728  2017-10-20 17:01  jre\bin\jstatd.exe

     文件       9728  2017-10-20 17:01  jre\bin\keytool.exe

............此处省略201个文件信息

评论

共有 条评论