<< < 89 90 91 92 93 94 95 96 97 98 99 > >>   Sort: Date

PurchaseOrder.java - JAXB Java Example Class
What would the Java class look like, if I want to map the PurchaseOrder.xsd XML schema to Java data objects based on JAXB API? If you apply the mapping rules given in the JAXB API specification on the PurchaseOrder.xsd XML schema given in the previous tutorial, you will get a Java class similar to t...
2018-05-19, 1259🔥, 0💬

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, 1255🔥, 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, 1254🔥, 0💬

JavaScriptHello - SJP API Hello Example
How to use the SJP (Scripting for the Java Platform) API to write a simple "Hello World!" example? You can follow this tutorial to use the SJP (Scripting for the Java Platform) API to write a simple "Hello World!" example: 1. Create a JavaScript ScriptEngine object with an instance of ScriptEngineMa...
2017-08-03, 1249🔥, 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, 1248🔥, 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, 1246🔥, 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, 1244🔥, 0💬

JRE 1.3 sunrsasign.jar - RSA Sign Library
JRE 1.3 sunrsasign.jar is the JAR file for JRE 1.3 RSA Sign library. JAR File Information: Directory of C:\fyicenter\jdk-1.3.1_28\jre\ lib89,796 sunrsasign.jar   ⇒ Backup JDK 1.3 Installation Directory ⇐ JRE 1.3 rt.jar - RunTime Library ⇑ Download and Review JDK 1.3 ⇑⇑ FAQ for JDK (Java Developmen...
2019-02-18, 1241🔥, 0💬

Download Apache Commons CLI Source Package
How to download and install Apache Commons CLI Source Package? The source package contains Java source code files for Apache Commons CLI. They are compressed into a single file like commons-cli-1.5.0-src.zip. You can compile them with different versions of JDK. You can download the source package fi...
2020-12-22, 1239🔥, 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, 1237🔥, 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, 1236🔥, 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, 1235🔥, 0💬

Tyrus Implementation of WebSocket API
What is Tyrus Implementation of WebSocket API? The Tyrus Implementation of WebSocket API is the Reference Implementation of JSR 356: Java API for WebSocket specification. The Tyrus implementation is included in Java EE 7 SDK distribution package. The client side classes of the Java API for WebSocket...
2018-01-19, 1235🔥, 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, 1235🔥, 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, 1234🔥, 0💬

Running Examples Provided in Rhino
Where to find answers to frequently asked questions on Running Examples Provided in Rhino? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Running Examples Provided in Rhino: RunScript.java - Run JavaScript as Command Option Control.java - Rhino JavaS...
2017-08-08, 1230🔥, 0💬

Transform XML to FO and Generate PDF with FOP
How to transform XML to FO and generate PDF with FOP? FOP allows you to transform XML to FO and generate PDF output with a single command. Here is how to do this: fyicenter&gt; cd \local\fop-2.x\fop fyicenter&gt; fop -xml examples\embedding\xml\xml\pro jectteam.xml-xsl examples\embedding\xml...
2018-04-28, 1227🔥, 0💬

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

What Is Apache Xerces XML Parser
What is Apache Xerces XML Parser? Apache Xerces XML Parser is an Apache project responsible for software licensed to the Apache Software Foundation intended for the creation and maintenance of XML parsers and related software components Apache Xerces XML Parser provides Apache Xerces2 Java package f...
2017-12-21, 1215🔥, 0💬

What Is Reference Implementation of JAXB
What is Reference Implementation of JAXB (Java Architecture for XML Binding)? Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java classes to XML representations. The Reference Implementation of JAXB API is the implementation developed by Oracle Corporation ...
2018-05-19, 1214🔥, 0💬

Draw Shape in PDF with iText
How to draw shapes in PDF using iText Java Library? Here is a tutorial for creating a PDF document with some drawing shapes using iText Java Library. 1. Create a Java file, DrawingShape.java: /** * Drawing shapes in PDF with iText */ import com.itextpdf.kernel.pdf.*; import com.itextpdf.kernel.pdf.c...
2022-04-28, 1213🔥, 1💬

JDK 17 jdk.management.agent.jmod - Management Agent Module
JDK 17 jdk.management.agent.jmod is the JMOD file for JDK 17 Management Agent module. JDK 17 Management Agent module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jd k.management.agent.jmod.JDK 17 Management Agent module compiled class files are also linked and stored in the \fyicen...
2023-07-29, 1212🔥, 0💬

What Is WebSocket Protocol
What is WebSocket Protocol? The WebSocket Protocol is networking communication specification that enables Web pages to use the WebSocket protocol for two-way communication with the Website. WebSocket protocol is designed to be implemented in web browsers and web servers, but it can be used by any cl...
2018-01-27, 1211🔥, 0💬

Launching Java Applications with JavaWS and JNLP
What are need to launch a Java application over the Internet with JavaWS and JNLP? If you want to publish a Java application to your end users over the Internet, and to allow them to launch the Java application with JavaWS and JNLP, you need to prepare the following: 1. Tell your end users to downlo...
2017-10-16, 1208🔥, 0💬

<< < 89 90 91 92 93 94 95 96 97 98 99 > >>   Sort: Date