首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

Alibaba-Dragonwell-Standard-8.19.20-x64-windows.zip

后端 99.13MB 28 需要积分: 1
立即下载

资源介绍:

用于Windows系统下的JAVA8的阿里巴巴优化版本,可以替代JAVA8。 Alibaba Dragonwell是OpenJDK的下游版本,是阿里巴巴内部的OpenJDK实现,针对在100000多台服务器上运行的在线电子商务、金融、物流应用程序进行了优化。Alibaba Dragonwell是在极端扩展中运行这些分布式Java应用程序的引擎。 当前版本仅支持Linux/x86_64平台。 阿里巴巴Dragonwell显然是一个“友好的分支”,其许可条款与上游OpenJDK项目相同。阿里巴巴致力于与OpenJDK社区密切合作,并打算将尽可能多的定制功能从阿里巴巴Dragonwell带到上游。
A Simple NIO-based HTTP/HTTPS Server Example INTRODUCTION ============ This directory contains a simple HTTP/HTTPS server. HTTP/HTTPS are two common network protocols that provide for data transfer, and are more fully described in RFC 2616 and RFC 2818 (Available at http://www.ietf.org ). HTTPS is essentially HTTP after the connection has been secured with SSL/TLS. TLS is the successor to SSL, and is described in RFC 2246. This server was written to demonstrate some of the functionality new to the Java 2 platform. The demo is not meant to be a full tutorial, and assumes the reader has some familiarity with the subject matter. In particular, it shows: New I/O (java.nio, java.nio.channels, java.util.regex, java.nio.charset) Introduced in version 1.4 of the platform, NIO was designed to overcome some of the scalability limitations found in the existing blocking java.net.* API's, and to address other concepts such as Regular Expression parsing and Character Sets. This server demonstrates: ByteBuffer Blocking and Non-Blocking I/O SocketChannel ServerSocketChannel Selector CharacterSet Pattern matching using Regular Expressions JSSE (javax.net.ssl) Introduced in version 1.4 of the platform, JSSE provides network security using SSL/TLS for java.net.Socket-based traffic. In version 1.5, the SSLEngine API was introduced which separates the SSL/TLS functionality from the underlying I/O model. By making this separation, applications can adapt I/O and compute strategies to best fit their circumstances. This server demonstrates: Using SSLEngine to create a HTTPS server Creating simple key material for use with HTTPS Concurrency Library (java.util.concurrent) Introduced in version 1.5 of the platform, the concurrency library provides a mechanism which decouples task submission from the mechanics of how each task will be run. This server demonstrates: A ThreadPool with a fixed number of threads, which is based on the number of available processors. SETUP ===== The server must be built on version 1.5 (or later) of the platform. Invoking the following should be sufficient: % mkdir build % javac -source 1.5 -target 1.5 -d build *.java The following creates the document root: % mkdir root All documents should be placed in this directory. For HTTPS, the server authenticates itself to clients by using simple Public Key Infrastructure (PKI) credentials in the form of X509Certificates. You must create the server's credentials before attempting to run the server in "-secure" mode. The server is currently hardcoded to look for its credentials in a file called "testkeys". In this example, we'll create credentials for a fictional widget web site owned by the ubiquitous "Xyzzy, Inc.". When you run this in your own environment, replace "widgets.xyzzy.com" with the hostname of your server. The easiest way to create the SSL/TLS credentials is to use the java keytool, by doing the following: ( represents your end-of-line key) % keytool -genkey -keyalg rsa -keystore testkeys -alias widgets Enter keystore password: passphrase What is your first and last name? [Unknown]: widgets.xyzzy.com What is the name of your organizational unit? [Unknown]: Consumer Widgets Group What is the name of your organization? [Unknown]: Xyzzy, Inc. What is the name of your City or Locality? [Unknown]: Arcata What is the name of your State or Province? [Unknown]: CA What is the two-letter country code for this unit? [Unknown]: US Is CN=widgets.xyzzy.com, OU=Consumer Widgets Group, O="Xyzzy, Inc.", L=Arcata, ST=CA, C=US correct? [no]: yes Enter key password for (RETURN if same as keystore password): This directory also contain a very simple URL reader (URLDumper), which connects to a specified URL and places all output into a specified file. SERVER EXECUTION ================ % java -classpath build Server N1 Usage: Server [options] type: B1 Blocking/Single-threaded Server BN Blocking/Multi-threaded Server BP Blocking/Pooled-thread Server N1 Nonblocking/Single-threaded Server N2 Nonblocking/Dual-threaded Server options: -port port port number default: 8000 -backlog backlog backlog default: 1024 -secure encrypt with SSL/TLS default is insecure "http://" URLs should be used with insecure mode, and "https://" for secure mode. The "B*" servers use classic blocking I/O: in other words, calls to read()/write() will not return until the I/O operation has completed. The "N*" servers use non-blocking mode and Selectors to determine which Channels are ready to perform I/O. B1: A single-threaded server which completely services each connection before moving to the next. B2: A multi-threaded server which creates a new thread for each connection. This is not efficient for large numbers of connections. BP: A multi-threaded server which creates a pool of threads for use by the server. The Thread pool decides how to schedule those threads. N1: A single-threaded server. All accept() and read()/write() operations are performed by a single thread, but only after being selected for those operations by a Selector. N2: A dual-threaded server which performs accept()s in one thread, and services requests in a second. Both threads use select(). CLIENT EXECUTION ================ You can test the server using any standard browser such as Internet Explorer or Mozilla, but since the browser will not trust the credentials you just created, you may need to accept the credentials via the browser's pop-up dialog box. Alternatively, to use the certificates using the simple included JSSE client URLDumper, export the server certificate into a new truststore, and then run the application using the new truststore. % keytool -export -keystore testkeys -alias widgets -file widgets.cer Enter keystore password: passphrase Certificate stored in file % keytool -import -keystore trustCerts -alias widgetServer \ -file widgets.cer Enter keystore password: passphrase Owner: CN=widgets.xyzzy.com, OU=Consumer, O="xyzzy, inc.", L=Arcata, ST=CA, C=US Issuer: CN=widgets.xyzzy.com, OU=Consumer, O="xyzzy, inc.", L=Arcata, ST=CA, C=US Serial number: 4086cc7a Valid from: Wed Apr 21 12:33:14 PDT 2004 until: Tue Jul 20 12:33:14 PDT 2004 Certificate fingerprints: MD5: 39:71:42:CD:BF:0D:A9:8C:FB:8B:4A:CD:F8:6D:19:1F SHA1: 69:5D:38:E9:F4:6C:E5:A7:4C:EA:45:8E:FB:3E:F3:9A:84:01:6F:22 Trust this certificate? [no]: yes Certificate was added to keystore % java -classpath build -Djavax.net.ssl.trustStore=trustCerts \ -Djavax.net.ssl.TrustStorePassword=passphrase \ URLDumper https://widgets.xyzzy.com:8000/ outputFile NOTE: The server must be run with "-secure" in order to receive "https://" URLs. WARNING: This is just a simple example for code exposition, you should spend more time understanding PKI security concerns. SOURCE CODE OVERVIEW ==================== The main class is Server, which handles program startup, and is subclassed by the "B*" and "N*" server classes. Following a successful accept(), the "B*" variants each create a RequestServicer object to perform the actual request/reply operations. The primary differences between the different "B*" servers is how the RequestServicer is actually run: B1

资源文件列表:

Alibaba_Dragonwell_Standard_8.19.20_x64_windows.zip 大约有428个文件
  1. dragonwell-8.19.20/
  2. dragonwell-8.19.20/ASSEMBLY_EXCEPTION 1.49KB
  3. dragonwell-8.19.20/bin/
  4. dragonwell-8.19.20/bin/appletviewer.exe 10.5KB
  5. dragonwell-8.19.20/bin/clhsdb.exe 10.5KB
  6. dragonwell-8.19.20/bin/extcheck.exe 10.5KB
  7. dragonwell-8.19.20/bin/hsdb.exe 10.5KB
  8. dragonwell-8.19.20/bin/idlj.exe 10.5KB
  9. dragonwell-8.19.20/bin/jabswitch.exe 28KB
  10. dragonwell-8.19.20/bin/jar.exe 10.5KB
  11. dragonwell-8.19.20/bin/jarsigner.exe 10.5KB
  12. dragonwell-8.19.20/bin/java-rmi.exe 10.5KB
  13. dragonwell-8.19.20/bin/java.exe 212.5KB
  14. dragonwell-8.19.20/bin/javac.exe 10.5KB
  15. dragonwell-8.19.20/bin/javadoc.exe 10.5KB
  16. dragonwell-8.19.20/bin/javah.exe 10.5KB
  17. dragonwell-8.19.20/bin/javap.exe 10.5KB
  18. dragonwell-8.19.20/bin/javaw.exe 212.5KB
  19. dragonwell-8.19.20/bin/jcmd.exe 10.5KB
  20. dragonwell-8.19.20/bin/jconsole.exe 10.5KB
  21. dragonwell-8.19.20/bin/jdb.exe 10.5KB
  22. dragonwell-8.19.20/bin/jdeps.exe 10.5KB
  23. dragonwell-8.19.20/bin/jfr.exe 10.5KB
  24. dragonwell-8.19.20/bin/jhat.exe 10.5KB
  25. dragonwell-8.19.20/bin/jinfo.exe 10.5KB
  26. dragonwell-8.19.20/bin/jjs.exe 10.5KB
  27. dragonwell-8.19.20/bin/jli.dll 186.5KB
  28. dragonwell-8.19.20/bin/jmap.exe 10.5KB
  29. dragonwell-8.19.20/bin/jps.exe 10.5KB
  30. dragonwell-8.19.20/bin/jrunscript.exe 10.5KB
  31. dragonwell-8.19.20/bin/jsadebugd.exe 10.5KB
  32. dragonwell-8.19.20/bin/jstack.exe 10.5KB
  33. dragonwell-8.19.20/bin/jstat.exe 10.5KB
  34. dragonwell-8.19.20/bin/jstatd.exe 10.5KB
  35. dragonwell-8.19.20/bin/keytool.exe 10.5KB
  36. dragonwell-8.19.20/bin/kinit.exe 10.5KB
  37. dragonwell-8.19.20/bin/klist.exe 10.5KB
  38. dragonwell-8.19.20/bin/ktab.exe 10.5KB
  39. dragonwell-8.19.20/bin/msvcp120.dll 644.66KB
  40. dragonwell-8.19.20/bin/msvcr120.dll 940.66KB
  41. dragonwell-8.19.20/bin/native2ascii.exe 10.5KB
  42. dragonwell-8.19.20/bin/orbd.exe 10.5KB
  43. dragonwell-8.19.20/bin/pack200.exe 10.5KB
  44. dragonwell-8.19.20/bin/policytool.exe 10.5KB
  45. dragonwell-8.19.20/bin/rmic.exe 10.5KB
  46. dragonwell-8.19.20/bin/rmid.exe 10.5KB
  47. dragonwell-8.19.20/bin/rmiregistry.exe 10.5KB
  48. dragonwell-8.19.20/bin/schemagen.exe 10.5KB
  49. dragonwell-8.19.20/bin/serialver.exe 10.5KB
  50. dragonwell-8.19.20/bin/servertool.exe 10.5KB
  51. dragonwell-8.19.20/bin/tnameserv.exe 10.5KB
  52. dragonwell-8.19.20/bin/unpack200.exe 192.5KB
  53. dragonwell-8.19.20/bin/wsgen.exe 10.5KB
  54. dragonwell-8.19.20/bin/wsimport.exe 10.5KB
  55. dragonwell-8.19.20/bin/xjc.exe 10.5KB
  56. dragonwell-8.19.20/include/
  57. dragonwell-8.19.20/include/classfile_constants.h 20.63KB
  58. dragonwell-8.19.20/include/jawt.h 9.46KB
  59. dragonwell-8.19.20/include/jdwpTransport.h 7.23KB
  60. dragonwell-8.19.20/include/jni.h 72.95KB
  61. dragonwell-8.19.20/include/jvmti.h 76.59KB
  62. dragonwell-8.19.20/include/jvmticmlr.h 4.66KB
  63. dragonwell-8.19.20/include/win32/
  64. dragonwell-8.19.20/include/win32/bridge/
  65. dragonwell-8.19.20/include/win32/bridge/AccessBridgeCallbacks.h 5.44KB
  66. dragonwell-8.19.20/include/win32/bridge/AccessBridgeCalls.c 44.78KB
  67. dragonwell-8.19.20/include/win32/bridge/AccessBridgeCalls.h 34.28KB
  68. dragonwell-8.19.20/include/win32/bridge/AccessBridgePackages.h 75.76KB
  69. dragonwell-8.19.20/include/win32/jawt_md.h 1.85KB
  70. dragonwell-8.19.20/include/win32/jni_md.h 1.45KB
  71. dragonwell-8.19.20/jre/
  72. dragonwell-8.19.20/jre/ASSEMBLY_EXCEPTION 1.49KB
  73. dragonwell-8.19.20/jre/bin/
  74. dragonwell-8.19.20/jre/bin/attach.dll 15.5KB
  75. dragonwell-8.19.20/jre/bin/awt.dll 1.43MB
  76. dragonwell-8.19.20/jre/bin/dt_shmem.dll 23KB
  77. dragonwell-8.19.20/jre/bin/dt_socket.dll 18.5KB
  78. dragonwell-8.19.20/jre/bin/fontmanager.dll 819.5KB
  79. dragonwell-8.19.20/jre/bin/freetype.dll 647.5KB
  80. dragonwell-8.19.20/jre/bin/hprof.dll 147.5KB
  81. dragonwell-8.19.20/jre/bin/instrument.dll 150.5KB
  82. dragonwell-8.19.20/jre/bin/j2gss.dll 35KB
  83. dragonwell-8.19.20/jre/bin/j2pcsc.dll 12.5KB
  84. dragonwell-8.19.20/jre/bin/j2pkcs11.dll 61KB
  85. dragonwell-8.19.20/jre/bin/jaas_nt.dll 14.5KB
  86. dragonwell-8.19.20/jre/bin/jabswitch.exe 28KB
  87. dragonwell-8.19.20/jre/bin/java-rmi.exe 10.5KB
  88. dragonwell-8.19.20/jre/bin/java.dll 148KB
  89. dragonwell-8.19.20/jre/bin/java.exe 212.5KB
  90. dragonwell-8.19.20/jre/bin/JavaAccessBridge-64.dll 138.5KB
  91. dragonwell-8.19.20/jre/bin/javaw.exe 212.5KB
  92. dragonwell-8.19.20/jre/bin/java_crw_demo.dll 23.5KB
  93. dragonwell-8.19.20/jre/bin/jawt.dll 8KB
  94. dragonwell-8.19.20/jre/bin/JAWTAccessBridge-64.dll 9KB
  95. dragonwell-8.19.20/jre/bin/jdwp.dll 190.5KB
  96. dragonwell-8.19.20/jre/bin/jjs.exe 10.5KB
  97. dragonwell-8.19.20/jre/bin/jli.dll 186.5KB
  98. dragonwell-8.19.20/jre/bin/jpeg.dll 153KB
  99. dragonwell-8.19.20/jre/bin/jsdt.dll 12KB
  100. dragonwell-8.19.20/jre/bin/jsound.dll 28.5KB
  101. dragonwell-8.19.20/jre/bin/jsoundds.dll 24.5KB
  102. dragonwell-8.19.20/jre/bin/keytool.exe 10.5KB
  103. dragonwell-8.19.20/jre/bin/kinit.exe 10.5KB
  104. dragonwell-8.19.20/jre/bin/klist.exe 10.5KB
  105. dragonwell-8.19.20/jre/bin/ktab.exe 10.5KB
  106. dragonwell-8.19.20/jre/bin/lcms.dll 230KB
  107. dragonwell-8.19.20/jre/bin/management.dll 30KB
  108. dragonwell-8.19.20/jre/bin/mlib_image.dll 657.5KB
  109. dragonwell-8.19.20/jre/bin/msvcp120.dll 644.66KB
  110. dragonwell-8.19.20/jre/bin/msvcr120.dll 940.66KB
  111. dragonwell-8.19.20/jre/bin/net.dll 89.5KB
  112. dragonwell-8.19.20/jre/bin/nio.dll 53.5KB
  113. dragonwell-8.19.20/jre/bin/npt.dll 12.5KB
  114. dragonwell-8.19.20/jre/bin/orbd.exe 10.5KB
  115. dragonwell-8.19.20/jre/bin/pack200.exe 10.5KB
  116. dragonwell-8.19.20/jre/bin/policytool.exe 10.5KB
  117. dragonwell-8.19.20/jre/bin/rmid.exe 10.5KB
  118. dragonwell-8.19.20/jre/bin/rmiregistry.exe 10.5KB
  119. dragonwell-8.19.20/jre/bin/sawindbg.dll 43KB
  120. dragonwell-8.19.20/jre/bin/server/
  121. dragonwell-8.19.20/jre/bin/server/jvm.dll 8.26MB
  122. dragonwell-8.19.20/jre/bin/server/Xusage.txt 1.39KB
  123. dragonwell-8.19.20/jre/bin/servertool.exe 10.5KB
  124. dragonwell-8.19.20/jre/bin/splashscreen.dll 197.5KB
  125. dragonwell-8.19.20/jre/bin/sspi_bridge.dll 26.5KB
  126. dragonwell-8.19.20/jre/bin/sunec.dll 127KB
  127. dragonwell-8.19.20/jre/bin/sunmscapi.dll 30.5KB
  128. dragonwell-8.19.20/jre/bin/tnameserv.exe 10.5KB
  129. dragonwell-8.19.20/jre/bin/unpack.dll 72KB
  130. dragonwell-8.19.20/jre/bin/unpack200.exe 192.5KB
  131. dragonwell-8.19.20/jre/bin/verify.dll 42KB
  132. dragonwell-8.19.20/jre/bin/w2k_lsa_auth.dll 17.5KB
  133. dragonwell-8.19.20/jre/bin/WindowsAccessBridge-64.dll 152.5KB
  134. dragonwell-8.19.20/jre/bin/zip.dll 74KB
  135. dragonwell-8.19.20/jre/lib/
  136. dragonwell-8.19.20/jre/lib/accessibility.properties 149B
  137. dragonwell-8.19.20/jre/lib/amd64/
  138. dragonwell-8.19.20/jre/lib/amd64/jvm.cfg 1.59KB
  139. dragonwell-8.19.20/jre/lib/applet/
  140. dragonwell-8.19.20/jre/lib/calendars.properties 2.42KB
  141. dragonwell-8.19.20/jre/lib/charsets.jar 2.95MB
  142. dragonwell-8.19.20/jre/lib/classlist 82.38KB
  143. dragonwell-8.19.20/jre/lib/cmm/
  144. dragonwell-8.19.20/jre/lib/cmm/CIEXYZ.pf 784B
  145. dragonwell-8.19.20/jre/lib/cmm/GRAY.pf 556B
  146. dragonwell-8.19.20/jre/lib/cmm/LINEAR_RGB.pf 488B
  147. dragonwell-8.19.20/jre/lib/cmm/PYCC.pf 228.59KB
  148. dragonwell-8.19.20/jre/lib/cmm/sRGB.pf 6.71KB
  149. dragonwell-8.19.20/jre/lib/content-types.properties 5.42KB
  150. dragonwell-8.19.20/jre/lib/currency.data 4.07KB
  151. dragonwell-8.19.20/jre/lib/ext/
  152. dragonwell-8.19.20/jre/lib/ext/access-bridge-64.jar 192.52KB
  153. dragonwell-8.19.20/jre/lib/ext/cldrdata.jar 3.68MB
  154. dragonwell-8.19.20/jre/lib/ext/dnsns.jar 8.16KB
  155. dragonwell-8.19.20/jre/lib/ext/jaccess.jar 43.47KB
  156. dragonwell-8.19.20/jre/lib/ext/localedata.jar 1.13MB
  157. dragonwell-8.19.20/jre/lib/ext/meta-index 729B
  158. dragonwell-8.19.20/jre/lib/ext/nashorn.jar 1.94MB
  159. dragonwell-8.19.20/jre/lib/ext/sunec.jar 38.05KB
  160. dragonwell-8.19.20/jre/lib/ext/sunjce_provider.jar 270.79KB
  161. dragonwell-8.19.20/jre/lib/ext/sunmscapi.jar 42.94KB
  162. dragonwell-8.19.20/jre/lib/ext/sunpkcs11.jar 275.23KB
  163. dragonwell-8.19.20/jre/lib/ext/zipfs.jar 70.37KB
  164. dragonwell-8.19.20/jre/lib/flavormap.properties 3.84KB
  165. dragonwell-8.19.20/jre/lib/fontconfig.bfc 3.69KB
  166. dragonwell-8.19.20/jre/lib/fontconfig.properties.src 11.3KB
  167. dragonwell-8.19.20/jre/lib/hijrah-config-umalqura.properties 14.61KB
  168. dragonwell-8.19.20/jre/lib/images/
  169. dragonwell-8.19.20/jre/lib/images/cursors/
  170. dragonwell-8.19.20/jre/lib/images/cursors/cursors.properties 1.25KB
  171. dragonwell-8.19.20/jre/lib/images/cursors/invalid32x32.gif 153B
  172. dragonwell-8.19.20/jre/lib/images/cursors/win32_CopyDrop32x32.gif 165B
  173. dragonwell-8.19.20/jre/lib/images/cursors/win32_CopyNoDrop32x32.gif 153B
  174. dragonwell-8.19.20/jre/lib/images/cursors/win32_LinkDrop32x32.gif 168B
  175. dragonwell-8.19.20/jre/lib/images/cursors/win32_LinkNoDrop32x32.gif 153B
  176. dragonwell-8.19.20/jre/lib/images/cursors/win32_MoveDrop32x32.gif 147B
  177. dragonwell-8.19.20/jre/lib/images/cursors/win32_MoveNoDrop32x32.gif 153B
  178. dragonwell-8.19.20/jre/lib/jce.jar 94.63KB
  179. dragonwell-8.19.20/jre/lib/jfr/
  180. dragonwell-8.19.20/jre/lib/jfr/default.jfc 28.39KB
  181. dragonwell-8.19.20/jre/lib/jfr/profile.jfc 28.35KB
  182. dragonwell-8.19.20/jre/lib/jfr.jar 868.76KB
  183. dragonwell-8.19.20/jre/lib/jsse.jar 1.83MB
  184. dragonwell-8.19.20/jre/lib/jvm.hprof.txt 4.13KB
  185. dragonwell-8.19.20/jre/lib/logging.properties 2.4KB
  186. dragonwell-8.19.20/jre/lib/management/
  187. dragonwell-8.19.20/jre/lib/management/jmxremote.access 3.9KB
  188. dragonwell-8.19.20/jre/lib/management/jmxremote.password.template 2.79KB
  189. dragonwell-8.19.20/jre/lib/management/management.properties 14.4KB
  190. dragonwell-8.19.20/jre/lib/management/snmp.acl.template 3.3KB
  191. dragonwell-8.19.20/jre/lib/management-agent.jar 380B
  192. dragonwell-8.19.20/jre/lib/meta-index 2KB
  193. dragonwell-8.19.20/jre/lib/net.properties 5.23KB
  194. dragonwell-8.19.20/jre/lib/psfont.properties.ja 3.7KB
  195. dragonwell-8.19.20/jre/lib/psfontj2d.properties 11.12KB
  196. dragonwell-8.19.20/jre/lib/resources.jar 3.35MB
  197. dragonwell-8.19.20/jre/lib/rt.jar 60.26MB
  198. dragonwell-8.19.20/jre/lib/security/
  199. dragonwell-8.19.20/jre/lib/security/blacklisted.certs 2.43KB
  200. dragonwell-8.19.20/jre/lib/security/cacerts 165.71KB
  201. dragonwell-8.19.20/jre/lib/security/java.policy 2.6KB
  202. dragonwell-8.19.20/jre/lib/security/java.security 54.11KB
  203. dragonwell-8.19.20/jre/lib/security/policy/
  204. dragonwell-8.19.20/jre/lib/security/policy/limited/
  205. dragonwell-8.19.20/jre/lib/security/policy/limited/local_policy.jar 1.02KB
  206. dragonwell-8.19.20/jre/lib/security/policy/limited/US_export_policy.jar 620B
  207. dragonwell-8.19.20/jre/lib/security/policy/unlimited/
  208. dragonwell-8.19.20/jre/lib/security/policy/unlimited/local_policy.jar 638B
  209. dragonwell-8.19.20/jre/lib/security/policy/unlimited/US_export_policy.jar 620B
  210. dragonwell-8.19.20/jre/lib/sound.properties 1.18KB
  211. dragonwell-8.19.20/jre/lib/tzdb.dat 101.73KB
  212. dragonwell-8.19.20/jre/lib/tzmappings 9.35KB
  213. dragonwell-8.19.20/jre/LICENSE 18.82KB
  214. dragonwell-8.19.20/jre/THIRD_PARTY_README 154.54KB
  215. dragonwell-8.19.20/lib/
  216. dragonwell-8.19.20/lib/ct.sym 16.32MB
  217. dragonwell-8.19.20/lib/dt.jar 159.26KB
  218. dragonwell-8.19.20/lib/ir.idl 18.97KB
  219. dragonwell-8.19.20/lib/jawt.lib 1.64KB
  220. dragonwell-8.19.20/lib/jconsole.jar 398.15KB
  221. dragonwell-8.19.20/lib/jvm.lib 745.03KB
  222. dragonwell-8.19.20/lib/orb.idl 1.6KB
  223. dragonwell-8.19.20/lib/sa-jdi.jar 2.21MB
  224. dragonwell-8.19.20/lib/tools.jar 17.52MB
  225. dragonwell-8.19.20/LICENSE 18.82KB
  226. dragonwell-8.19.20/release 508B
  227. dragonwell-8.19.20/sample/
  228. dragonwell-8.19.20/sample/annotations/
  229. dragonwell-8.19.20/sample/annotations/DependencyChecker/
  230. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/
  231. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/
  232. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/checker/
  233. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/checker/Device.java 2.56KB
  234. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/checker/Kettle.xml 2.28KB
  235. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/checker/Module.java 2.01KB
  236. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/checker/PluginChecker.java 6.05KB
  237. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/checker/Require.java 2.95KB
  238. dragonwell-8.19.20/sample/annotations/DependencyChecker/PluginChecker/src/checker/RequireContainer.java 2.13KB
  239. dragonwell-8.19.20/sample/annotations/DependencyChecker/Plugins/
  240. dragonwell-8.19.20/sample/annotations/DependencyChecker/Plugins/src/
  241. dragonwell-8.19.20/sample/annotations/DependencyChecker/Plugins/src/plugins/
  242. dragonwell-8.19.20/sample/annotations/DependencyChecker/Plugins/src/plugins/BoilerPlugin.java 3.08KB
  243. dragonwell-8.19.20/sample/annotations/DependencyChecker/Plugins/src/plugins/ExtendedBoilerPlugin.java 2.91KB
  244. dragonwell-8.19.20/sample/annotations/DependencyChecker/Plugins/src/plugins/TimerPlugin.java 2.52KB
  245. dragonwell-8.19.20/sample/annotations/index.html 3.35KB
  246. dragonwell-8.19.20/sample/annotations/Validator/
  247. dragonwell-8.19.20/sample/annotations/Validator/src/
  248. dragonwell-8.19.20/sample/annotations/Validator/src/PositiveIntegerSupplier.java 2.42KB
  249. dragonwell-8.19.20/sample/annotations/Validator/src/SupplierValidator.java 2.67KB
  250. dragonwell-8.19.20/sample/annotations/Validator/src/Validate.java 2.73KB
  251. dragonwell-8.19.20/sample/annotations/Validator/src/Validator.java 3.96KB
  252. dragonwell-8.19.20/sample/forkjoin/
  253. dragonwell-8.19.20/sample/forkjoin/mergesort/
  254. dragonwell-8.19.20/sample/forkjoin/mergesort/MergeDemo.java 11.13KB
  255. dragonwell-8.19.20/sample/forkjoin/mergesort/MergeSort.java 5.5KB
  256. dragonwell-8.19.20/sample/jmx/
  257. dragonwell-8.19.20/sample/jmx/jmx-scandir/
  258. dragonwell-8.19.20/sample/jmx/jmx-scandir/build.properties 1.6KB
  259. dragonwell-8.19.20/sample/jmx/jmx-scandir/build.xml 7.24KB
  260. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/
  261. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/connect-local-ant-run.jpg 32.34KB
  262. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/connect-local-java-jar.jpg 29.48KB
  263. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/connect-local.jpg 28.26KB
  264. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/remote-connection-failed.jpg 30.09KB
  265. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/remote-connection.jpg 27.19KB
  266. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/scandir-config.jpg 73.23KB
  267. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/scandir-result.jpg 86.27KB
  268. dragonwell-8.19.20/sample/jmx/jmx-scandir/docfiles/scandir-start.jpg 68.77KB
  269. dragonwell-8.19.20/sample/jmx/jmx-scandir/index.html 104.95KB
  270. dragonwell-8.19.20/sample/jmx/jmx-scandir/keystore 1.33KB
  271. dragonwell-8.19.20/sample/jmx/jmx-scandir/logging.properties 482B
  272. dragonwell-8.19.20/sample/jmx/jmx-scandir/manifest.mf 82B
  273. dragonwell-8.19.20/sample/jmx/jmx-scandir/nbproject/
  274. dragonwell-8.19.20/sample/jmx/jmx-scandir/nbproject/file-targets.xml 2KB
  275. dragonwell-8.19.20/sample/jmx/jmx-scandir/nbproject/jdk.xml 4.12KB
  276. dragonwell-8.19.20/sample/jmx/jmx-scandir/nbproject/netbeans-targets.xml 3.62KB
  277. dragonwell-8.19.20/sample/jmx/jmx-scandir/nbproject/project.xml 8.73KB
  278. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/
  279. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/
  280. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/
  281. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/
  282. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/
  283. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
  284. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
  285. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/DirectoryScannerConfig.java 13.8KB
  286. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/FileMatch.java 11.33KB
  287. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/package.html 3.02KB
  288. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/ResultLogConfig.java 6.05KB
  289. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/ResultRecord.java 6.72KB
  290. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/ScanManagerConfig.java 11.15KB
  291. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/XmlConfigUtils.java 14.48KB
  292. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/DirectoryScanner.java 22.12KB
  293. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/DirectoryScannerMXBean.java 7.19KB
  294. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/package.html 1.79KB
  295. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ResultLogManager.java 19.18KB
  296. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ResultLogManagerMXBean.java 11.4KB
  297. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ScanDirAgent.java 9KB
  298. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ScanDirClient.java 8.28KB
  299. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ScanDirConfig.java 16.84KB
  300. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ScanDirConfigMXBean.java 15.03KB
  301. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ScanManager.java 44.19KB
  302. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/ScanManagerMXBean.java 13.68KB
  303. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/etc/
  304. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/etc/access.properties 2.34KB
  305. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/etc/management.properties 11.62KB
  306. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/etc/password.properties 2.4KB
  307. dragonwell-8.19.20/sample/jmx/jmx-scandir/src/etc/testconfig.xml 2.34KB
  308. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/
  309. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/
  310. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/
  311. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/
  312. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/
  313. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
  314. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/config/
  315. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/config/XmlConfigUtilsTest.java 3.96KB
  316. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/DirectoryScannerTest.java 12.43KB
  317. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/ScanDirConfigTest.java 12.51KB
  318. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/ScanManagerTest.java 13.04KB
  319. dragonwell-8.19.20/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/TestUtils.java 4.42KB
  320. dragonwell-8.19.20/sample/jmx/jmx-scandir/truststore 661B
  321. dragonwell-8.19.20/sample/lambda/
  322. dragonwell-8.19.20/sample/lambda/BulkDataOperations/
  323. dragonwell-8.19.20/sample/lambda/BulkDataOperations/index.html 1.41KB
  324. dragonwell-8.19.20/sample/lambda/BulkDataOperations/src/
  325. dragonwell-8.19.20/sample/lambda/BulkDataOperations/src/CSVProcessor.java 14.06KB
  326. dragonwell-8.19.20/sample/lambda/BulkDataOperations/src/Grep.java 7.25KB
  327. dragonwell-8.19.20/sample/lambda/BulkDataOperations/src/PasswordGenerator.java 4.21KB
  328. dragonwell-8.19.20/sample/lambda/BulkDataOperations/src/WC.java 8.33KB
  329. dragonwell-8.19.20/sample/lambda/DefaultMethods/
  330. dragonwell-8.19.20/sample/lambda/DefaultMethods/ArrayIterator.java 4.24KB
  331. dragonwell-8.19.20/sample/lambda/DefaultMethods/DiamondInheritance.java 4.62KB
  332. dragonwell-8.19.20/sample/lambda/DefaultMethods/Inheritance.java 4.93KB
  333. dragonwell-8.19.20/sample/lambda/DefaultMethods/MixIn.java 3.96KB
  334. dragonwell-8.19.20/sample/lambda/DefaultMethods/Reflection.java 4.97KB
  335. dragonwell-8.19.20/sample/lambda/DefaultMethods/SimplestUsage.java 3.19KB
  336. dragonwell-8.19.20/sample/nbproject/
  337. dragonwell-8.19.20/sample/nbproject/project.xml 2.17KB
  338. dragonwell-8.19.20/sample/nio/
  339. dragonwell-8.19.20/sample/nio/chatserver/
  340. dragonwell-8.19.20/sample/nio/chatserver/ChatServer.java 6.9KB
  341. dragonwell-8.19.20/sample/nio/chatserver/Client.java 6.65KB
  342. dragonwell-8.19.20/sample/nio/chatserver/ClientReader.java 3.5KB
  343. dragonwell-8.19.20/sample/nio/chatserver/DataReader.java 2.06KB
  344. dragonwell-8.19.20/sample/nio/chatserver/MessageReader.java 3.2KB
  345. dragonwell-8.19.20/sample/nio/chatserver/NameReader.java 4.46KB
  346. dragonwell-8.19.20/sample/nio/chatserver/README.txt 2.05KB
  347. dragonwell-8.19.20/sample/nio/file/
  348. dragonwell-8.19.20/sample/nio/file/AclEdit.java 10.57KB
  349. dragonwell-8.19.20/sample/nio/file/Chmod.java 12.58KB
  350. dragonwell-8.19.20/sample/nio/file/Copy.java 8.01KB
  351. dragonwell-8.19.20/sample/nio/file/DiskUsage.java 3.11KB
  352. dragonwell-8.19.20/sample/nio/file/FileType.java 2.56KB
  353. dragonwell-8.19.20/sample/nio/file/WatchDir.java 6.15KB
  354. dragonwell-8.19.20/sample/nio/file/Xdd.java 4.5KB
  355. dragonwell-8.19.20/sample/nio/multicast/
  356. dragonwell-8.19.20/sample/nio/multicast/MulticastAddress.java 4.83KB
  357. dragonwell-8.19.20/sample/nio/multicast/Reader.java 5.67KB
  358. dragonwell-8.19.20/sample/nio/multicast/Sender.java 3.03KB
  359. dragonwell-8.19.20/sample/nio/server/
  360. dragonwell-8.19.20/sample/nio/server/AcceptHandler.java 3.03KB
  361. dragonwell-8.19.20/sample/nio/server/Acceptor.java 3.07KB
  362. dragonwell-8.19.20/sample/nio/server/B1.java 2.65KB
  363. dragonwell-8.19.20/sample/nio/server/BN.java 2.75KB
  364. dragonwell-8.19.20/sample/nio/server/BP.java 2.9KB
  365. dragonwell-8.19.20/sample/nio/server/ChannelIO.java 5.83KB
  366. dragonwell-8.19.20/sample/nio/server/ChannelIOSecure.java 20.42KB
  367. dragonwell-8.19.20/sample/nio/server/Content.java 2.18KB
  368. dragonwell-8.19.20/sample/nio/server/Dispatcher.java 2.23KB
  369. dragonwell-8.19.20/sample/nio/server/Dispatcher1.java 2.94KB
  370. dragonwell-8.19.20/sample/nio/server/DispatcherN.java 3.04KB
  371. dragonwell-8.19.20/sample/nio/server/FileContent.java 3.81KB
  372. dragonwell-8.19.20/sample/nio/server/Handler.java 2.09KB
  373. dragonwell-8.19.20/sample/nio/server/MalformedRequestException.java 2.23KB
  374. dragonwell-8.19.20/sample/nio/server/N1.java 2.54KB
  375. dragonwell-8.19.20/sample/nio/server/N2.java 2.4KB
  376. dragonwell-8.19.20/sample/nio/server/README.txt 10.08KB
  377. dragonwell-8.19.20/sample/nio/server/Reply.java 4.41KB
  378. dragonwell-8.19.20/sample/nio/server/Request.java 5.26KB
  379. dragonwell-8.19.20/sample/nio/server/RequestHandler.java 6.41KB
  380. dragonwell-8.19.20/sample/nio/server/RequestServicer.java 5.14KB
  381. dragonwell-8.19.20/sample/nio/server/Sendable.java 2.35KB
  382. dragonwell-8.19.20/sample/nio/server/Server.java 6.13KB
  383. dragonwell-8.19.20/sample/nio/server/StringContent.java 3.32KB
  384. dragonwell-8.19.20/sample/nio/server/URLDumper.java 2.77KB
  385. dragonwell-8.19.20/sample/README 338B
  386. dragonwell-8.19.20/sample/scripting/
  387. dragonwell-8.19.20/sample/scripting/scriptpad/
  388. dragonwell-8.19.20/sample/scripting/scriptpad/build.properties 375B
  389. dragonwell-8.19.20/sample/scripting/scriptpad/build.xml 3.71KB
  390. dragonwell-8.19.20/sample/scripting/scriptpad/nbproject/
  391. dragonwell-8.19.20/sample/scripting/scriptpad/nbproject/file-targets.xml 2KB
  392. dragonwell-8.19.20/sample/scripting/scriptpad/nbproject/jdk.xml 4.12KB
  393. dragonwell-8.19.20/sample/scripting/scriptpad/nbproject/netbeans-targets.xml 3.42KB
  394. dragonwell-8.19.20/sample/scripting/scriptpad/nbproject/project.xml 7.27KB
  395. dragonwell-8.19.20/sample/scripting/scriptpad/README.txt 4.01KB
  396. dragonwell-8.19.20/sample/scripting/scriptpad/src/
  397. dragonwell-8.19.20/sample/scripting/scriptpad/src/com/
  398. dragonwell-8.19.20/sample/scripting/scriptpad/src/com/sun/
  399. dragonwell-8.19.20/sample/scripting/scriptpad/src/com/sun/sample/
  400. dragonwell-8.19.20/sample/scripting/scriptpad/src/com/sun/sample/scriptpad/
  401. dragonwell-8.19.20/sample/scripting/scriptpad/src/com/sun/sample/scriptpad/Main.java 3.36KB
  402. dragonwell-8.19.20/sample/scripting/scriptpad/src/META-INF/
  403. dragonwell-8.19.20/sample/scripting/scriptpad/src/META-INF/manifest.mf 43B
  404. dragonwell-8.19.20/sample/scripting/scriptpad/src/resources/
  405. dragonwell-8.19.20/sample/scripting/scriptpad/src/resources/conc.js 9.54KB
  406. dragonwell-8.19.20/sample/scripting/scriptpad/src/resources/gui.js 8.15KB
  407. dragonwell-8.19.20/sample/scripting/scriptpad/src/resources/Main.js 2.05KB
  408. dragonwell-8.19.20/sample/scripting/scriptpad/src/resources/mm.js 10.87KB
  409. dragonwell-8.19.20/sample/scripting/scriptpad/src/resources/scriptpad.js 21.86KB
  410. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/
  411. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/browse.js 2.77KB
  412. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/insertfile.js 2.86KB
  413. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/linewrap.js 2.19KB
  414. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/mail.js 2.73KB
  415. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/memmonitor.js 2.98KB
  416. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/memory.bat 1.75KB
  417. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/memory.js 2.33KB
  418. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/memory.sh 1.7KB
  419. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/README.txt 1.78KB
  420. dragonwell-8.19.20/sample/scripting/scriptpad/src/scripts/textcolor.js 2.3KB
  421. dragonwell-8.19.20/sample/try-with-resources/
  422. dragonwell-8.19.20/sample/try-with-resources/index.html 986B
  423. dragonwell-8.19.20/sample/try-with-resources/src/
  424. dragonwell-8.19.20/sample/try-with-resources/src/CustomAutoCloseableSample.java 5.06KB
  425. dragonwell-8.19.20/sample/try-with-resources/src/Unzip.java 3.29KB
  426. dragonwell-8.19.20/sample/try-with-resources/src/ZipCat.java 3.29KB
  427. dragonwell-8.19.20/src.zip 49.37MB
  428. dragonwell-8.19.20/THIRD_PARTY_README 154.54KB
0评论
提交 加载更多评论
其他资源 2014-2019年中国及30个省区碳排放及能源清单数据
数据整理来源:CEADS
EPWM驱动EPWM驱动
EPWM驱动
常用的十种java排序算法实现
1. 冒泡排序(Bubble Sort) public static void bubbleSort(int[] arr) { for (int i = 0; i < arr.length - 1; i++) { ...............详见附件..................... } } 2. 插入排序(Insertion Sort) 3. 选择排序(Selection Sort) 4. 快速排序(Quick Sort) 5. 归并排序(Merge Sort) 6.堆排序(Heap Sort) 7. 计数排序(Counting Sort) 8. 桶排序(Bucket Sort) 9. 基数排序(Radix Sort) 10. 希尔排序(Shell Sort) 解压密码 douge
PyQt5的TableView \ ListView \ TreeView源代码
在这个示例中,我们将使用PyQt5来展示如何创建简单的TableView、ListView和TreeView。这三个视图组件是PyQt5中用于展示和编辑结构化数据的重要工具。 TableView 用于展示和编辑二维表格数据。 ListView 用于展示和编辑一维列表数据。 TreeView 用于展示和编辑树形结构数据。 通过这段代码,你将学会如何在PyQt5应用程序中使用TableView、ListView和TreeView来展示和编辑结构化数据. 仅用于学习和参考哟
stegdetect图片隐写工具
stegdetect是一款小巧但十分强大的图片隐写检测工具常用来检测图片的加密方法和破解。 // 判断是否含有Jphide stegdetect.exe -tjopi -s 10.0 [stego_file] // 爆破密码 stegbreak -r rules.ini -f password.txt -t p [stego_file]
windows操作系统下安装ipmitool工具
windows操作系统下安装ipmitool工具
18715605985定位链接.zip
18715605985定位链接.zip
termux-app-master.zip
termux-app-master.zip