<< < 86 87 88 89 90 91 92 93 94 95 96 > >>   Sort: Date

WebSocket Opening Handshake Messages
How does the WebSocket Opening Handshake work? WebSocket Opening Handshake starts with the client sends the opening handshake request as an HTTP request message in the following format: GET /chat HTTP/1.1 Host: server.example.com Upgrade: websocket Connection: Upgrade Sec-WebSocket-Key: dGhlIHNhbXBs...
2018-01-27, 1118🔥, 0💬

SSL Handshake Message Sequence
What is the SSL handshake message sequence? I want to know how many messages are exchanged between the client and the server. When a SSL client is connecting to a SSL server, they will communicate to each other with the following sequence of messages to perform SSL handshake and exchange application...
2018-03-24, 1115🔥, 0💬

Building Your Own JavaWS and JNLP Application
Where to find answers to frequently asked questions on Building Your Own JavaWS and JNLP Application. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Building Your Own JavaWS and JNLP Application: Build Java Application as Executable JAR Create JNLP F...
2017-12-26, 1113🔥, 0💬

jdk.jlink/jdk.tools.jlink.internal.Main - "jlink" Command
How to run "jlink" command from JDK lib\modules JImage file? "jlink" command allows you to assemble a set of modules and their dependencies into a custom lib\modules JImage file. "jlink" command is supported by the jmods\jdk.jlink.jmod module file, which is also linked into the lib\modules JImage fi...
2020-01-29, 1110🔥, 0💬

JDK 1.3 dt.jar - Java Swing Desktop
JDK 1.3 dt.jar is the JAR file for JDK 1.3 Java Swing Desktop defined in the "javax\swing" package. JAR File Information: Directory of C:\fyicenter\jdk-1.3.1_28\lib 130,166 dt.jar   ⇒ JDK 1.3 htmlconverter.jar - HTML Converter ⇐ JDK/JRE 1.3 JAR Files List ⇑ Download and Review JDK 1.3 ⇑⇑ FAQ for J...
2019-02-05, 1105🔥, 0💬

jdkjdk.hotspot.agent/sun.jvm.hotspot.tools.HeapDumper - JVM Heap Dumper
How to run "jdk.hotspot.agent/sun.jvm.hot spot.tools.HeapDumper"tool from JDK lib\modules JImage file? "jdk.hotspot.agent/sun.jvm.hot spot.tools.HeapDumper"tool allows you to print out heap summary of a given JVM process. "jdk.hotspot.agent/sun.jvm.hot spot.tools.HeapDumper"tool is supported by the ...
2019-09-27, 1104🔥, 0💬

Backup JDK 8 Installation Directory
How to backup up JDK 8 installation directory? If you want to backup your JDK 8 installation directory, so that you can restore it later when you need it, you can follow these steps: 1. Compress the entire JDK 8 installation directory into a ZIP file. Here is how you can do this using the WinRAR com...
2019-07-09, 1103🔥, 0💬

Source Code for SLF4J Bridge to JDK
SLF4J Bridge to JDK is a binding bridge that implements the SLF4J API with JDK logging library. Here is the source code for SLF4J Bridge to JDK. You can download its pre-compiled version slf4j-jdk14-2.0.4.jar at SLF4J Download Website .   Or download all of them as a single archive file: File name: ...
2021-11-30, 1101🔥, 0💬

Remove Applications from JavaWS Cache
How to remove applications from JavaWS cache? I don't want to use the application any more. There are two ways to remove Java applications from the JavaWS cache: 1. Using Java Control Panel: Run "Control Panel\Programs\Java". You see the Java Control Panel showing up. Click "General" tab and click "...
2018-01-06, 1101🔥, 0💬

JDK/JRE 5 JAR Files List
Where to find a full list of JAR files provided in JDK/JRE 5? Here is a list of all JAR files provided in JDK/JRE 5. Directory of C:\fyicenter\jdk-1.5.0_22\lib 142,477 dt.jar 278,020 htmlconverter.jar 232,634 jconsole.jar 7,060,373 tools.jar Directory of C:\fyicenter\jdk-1.5.0_22\jre\ lib8,898,567 c...
2019-04-03, 1097🔥, 0💬

Client Certificate Authentication Example
How to write a SSL client program that use a client certificate? The SSL is asking for client certificate authentication. When an SSL server program is asking for client certificate authentication, it is usually coded as the following: serverSocket.setNeedClientAuth (true);In the SSL client program,...
2018-06-12, 1095🔥, 0💬

Unmarshaller with No Default Data Validation
Why the Unmarshaller is not generating error on invalid data given in the XML file? In the Reference Implementation and JRE 8 implementation of JAXB, the Unmarshaller does not have any default data validation. If the input XML has any invalid data, the Unmarshaller will will throw data parsing excep...
2017-06-30, 1092🔥, 0💬

Source Code for Connector/J 8.0.31 - User API
Where to get the Java source code for Connector/J 8.0 User API module? Java source code files for Connector/J 8.0 User API module are: Or download all of them as a single archive file: File name: mysql-connector-java-user-api- 8.0.31.zipFile size: 78392 bytes Release date: 2022-09-03 Download MySQL-...
2023-05-31, 1084🔥, 0💬

commons-cli-1.4-sources.jar - Apache Commons CLI
commons-cli-1.4-sources.jar is the source JAR file for Apache Commons CLI 1.4, which provides an API for parsing command line options passed to programs. JAR File Size and Download Location: JAR name: commons-cli-1.4-sources.jar Target JDK version: 1.5 Dependency: None File size: 63,104 bytes Releas...
2023-02-28, 1081🔥, 0💬

Test to Read Excel File as XML with Format Properties
How to run the test to read an existing Excel file as XML output with cell format properties with jxl.jar? The following steps shows you how to run the test to read an existing Excel file as XML output with cell format properties with jxl.jar: 1. Open command line window to verify jxl.jar installati...
2018-04-07, 1080🔥, 0💬

Download Apache Commons CLI Binary Package
How to download and install Apache Commons CLI Binary Package? The binary package contains pre-compiled Java 8 class files and other supporting files for Apache Commons CLI library. They are compressed into a single file like commons-cli-1.5.0-bin.zip. You can download the binary package file by cli...
2021-01-09, 1077🔥, 0💬

What Is WebSocket API
What is WebSocket API? The WebSocket API is a programming interface specification to support WebSocket protocol, which enables Web pages to use the WebSocket protocol for two-way communication with the Website. The current version the WebSocket API specification is provided by W3C: The WebSocket API...
2018-01-24, 1075🔥, 0💬

JDK 9 Modules List
Where to find a full list of modules provided in JDK 9? Here is a list of all modules provided in JDK 9. The "Mod" column indicates that the module has a jmods\*.jmod file. The "Img" column indicates that the module is included in the lib\modules JImage file. The "Src" column indicates that the modu...
2020-02-20, 1071🔥, 0💬

JDK 10 Installed Directories and Files
What are JDK 9 installed directories and files? All JDK 11 installed directories and files are located at the "Installed to" directory. For example: C:\fyicenter\jdk-10.0.2: C:\fyicenter\jdk-10.0.2\... 514400 bin\deploy.dll 35680 bin\jabswitch.exe 100192 bin\jaccessinspector.exe 59744 bin\jaccesswal...
2019-12-02, 1071🔥, 0💬

JRE 1.4 ldapsec.jar - LDAP Security
JRE 1.4 ldapsec.jar is the JAR file for JRE 1.4 LDAP Security. JAR File Information: Directory of C:\fyicenter\jdk-1.4.2_19\jre\ lib\ext53,248 ldapsec.jar   ⇒ JRE 1.4 localedata.jar - Locale Data ⇐ JRE 1.4 dnsns.jar - DNS Name Service ⇑ Download and Review JDK 1.4 ⇑⇑ FAQ for JDK (Java Development ...
2019-03-20, 1070🔥, 0💬

Uninstall JDK 10 from Windows Computer
How to uninsatll JDK 10 from my Windows computer? I don't need it any more. If you want to uninstall JDK 10 from your Windows computer, you can follow these steps: 1. Go to "Control Panel &gt; Programs &gt; Programs and Features". You see "Java(TM) SE Development Kit 10.0.2 (64-bit)" listed ...
2019-08-08, 1067🔥, 0💬

JRE 1.4 charsets.jar - Character Set Encoding
JRE 1.4 charsets.jar is the JAR file for JRE 1.4 Character Set Encodings like Big5, GB18030, IBM037, ISO02022, etc. JAR File Information: Directory of C:\fyicenter\jdk-1.4.2_19\jre\ lib6,112,383 charsets.jar   ⇒ JRE 1.4 javaws.jar - Java Web Start ⇐ JDK 1.4 tools.jar - JDK Tools ⇑ Download and Revi...
2019-03-20, 1066🔥, 0💬

JavaScript Engine Changed in Java SE 8
What is the default JavaScript Engine in Java SE 8? The default JavaScript engine has been changed in Java SE 8: Java SE 8 - jdk.nashorn.api.scripting.Nash ornScriptEngineJava SE 7 - com.sun.script.javascript.Rhin oScriptEngineYou can run the sample Java program, JavaScriptEngineInfo.java, in Java S...
2017-07-25, 1064🔥, 0💬

"FOP -awt" - Generate Output on Screen
How to use "FOP -awt" option to generate output on the screen? If you want to display output on the screen instead of PDF files, you can use the "FOP -awt" command option. Here is how to do this: fyicenter&gt; cd \local\fop-2.x\fop fyicenter&gt; fop -awt examples\fo\basic\fonts.fo org.apache...
2018-04-28, 1061🔥, 0💬

<< < 86 87 88 89 90 91 92 93 94 95 96 > >>   Sort: Date