<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Rank

What Is Apache ZooKeeper
What is Apache ZooKeeper? Apache ZooKeeper is an open-source server which enables highly reliable distributed coordination. ZooKeeper is a centralized service for maintaining configuration information, naming, providing distributed synchronization, and providing group services. All of these kinds of...
2022-02-04, 740🔥, 0💬

Using Apache ZooKeeper
Where to find answers to frequently asked questions on Using Apache ZooKeeper. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using Apache ZooKeeper: Start Standalone ZooKeeper Server Run ZooKeeper Client Commands   ⇒ Start Standalone ZooKeeper Serve...
2022-02-04, 697🔥, 0💬

Demo Program JAFApp.java in jaf-1_1_1.zip
How to run the demo program, JAFApp.java, provided in the jaf-1_1_1.zip package? The jaf-1_1_1.zip package comes with a nice demo program called JAFApp.java. You can compile and run it as described below: 1. Make sure you installed jaf-1_1_1.zip under the \local folder. 2. Run commands below: fyicen...
2022-01-22, 2709🔥, 1💬

💬 2022-01-22 Astro-SpaceTrack-0.149: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46...

htmlunit-2.7.jar - HtmlUnit
HtmlUnit is a "GUI-Less browser for Java programs". It models HTML documents and provides an API that allows you to invoke pages, fill out forms, click links, etc... just like you do in your "normal" browser. It is typically used for testing purposes or to retrieve information from web sites. JAR Fi...
2022-01-22, 3852🔥, 7💬

💬 2022-01-22 zhukov: committed Feb 19, 2020 1 parent b61a5d0 commit 0bdb3313819beca94bbeacb1e6cc14765fa0 7455

💬 2022-01-16 opera.mini: * POJO stands for Plain Ol **/ const pojo = (...props) => return function() { let obj = {}, j = props.length; for (let i = 0; i ...

JDK 7 tools.jar - JDK Tools
JDK 7 tools.jar is the JAR file for JDK 7 tools. It contains Java classes to support different JDK tool commands: sun.applet.Main - Supports the "appletviewer" command. sun.rmi.rmic.Main - Supports the "rmic" command. sun.security.tools.jarsigner.M ain- Supports the "jarsigner" command. sun.tools.ja...
2022-01-18, 17251🔥, 6💬

💬 2022-01-18 gtk: imports.gi.versions['Gtk'] = '4.0'; const Gtk = imports.gi.Gtk; // Create a new application let app = new Gtk.Application({ appl...

💬 2020-07-15 FYIcenter.com: JDK 7 tools.jar is included in the JDK 7 package, which can be downloaded from Oracle Java Website.

💬 2020-07-10 : 这东西怎么下载啊·····???救命··

(More comments ...)

SLF4J No Binding Example
What happens if I use slf4j-api-*.jar without any logging library to bind with? If you use slf4j-api-*.jar only, you will get a warning message. And all logging messages will be dropped as shown in this tutorial. 1. Write a simple Java program, Hello.java, to use SLF4J API: // Copyright (c) FYIcente...
2021-12-23, 880🔥, 0💬

Using slf4j-*.jar in Java Programs
Where to find answers to frequently asked questions on Using slf4j-*.jar in Java Programs. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using slf4j-*.jar in Java Programs: SLF4J No Binding Example SLF4J Binding to Simple Logger Example SLF4J Bindin...
2021-12-23, 749🔥, 0💬

SLF4J Binding to Log4J Loger Example
How to use SLF4J API with Log4J Logger? If you want to use SLF4J API with JDK Logger, you need specify slf4j-api-*.jar, slf4j-log4j*.jar and log4j-*.jar in Java classpath as shown in this tutorial. 1. Write a simple Java program, Hello.java, to use SLF4J API: // Copyright (c) FYIcenter.com import or...
2021-12-23, 650🔥, 0💬

SLF4J Binding to Simple Logger Example
How to use SLF4J API with SLF4J Simple Logger? If you want to use SLF4J API with SLF4J Simple Logger, you need specify slf4j-api-*.jar and slf4j-simple-*.jar in Java classpath as shown in this tutorial. 1. Write a simple Java program, Hello.java, to use SLF4J API: // Copyright (c) FYIcenter.com impo...
2021-12-23, 630🔥, 0💬

SLF4J Binding to JDK Loger Example
How to use SLF4J API with JDK Logger? If you want to use SLF4J API with JDK Logger, you need specify slf4j-api-*.jar and slf4j-jdk14-*.jar in Java classpath as shown in this tutorial. 1. Write a simple Java program, Hello.java, to use SLF4J API: // Copyright (c) FYIcenter.com import org.slf4j.Logger...
2021-12-23, 612🔥, 0💬

Downloading Lightweight Java Game Library 2.9.0
The Lightweight Java Game Library (LWJGL) is a solution aimed directly at professional and amateur Java programmers alike to enable commercial quality games to be written in Java. LWJGL provides developers access to high performance crossplatform libraries such as OpenGL (Open Graphics Library), Ope...
2021-12-17, 6326🔥, 2💬

💬 2021-12-17 Joshua: Nice game

💬 2021-01-09 Tanjim: Good for java game

JRE 8 rt.jar - org.* Package Source Code
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime environment included in JDK 8. JRE 8 rt.jar libraries are divided into 6 packages: com.* - Internal Oracle and Sun Microsystems libraries java.* - Standard Java API libraries. javax.* - Extended Java A...
2021-12-10, 198825🔥, 5💬

💬 2021-12-10 dola: thanx

💬 2021-12-10 dola: hola thanx

💬 2021-11-01 JisNaDa: thank you for providing this code

(More comments ...)

Source Code for SLF4J Simple Logging
SLF4J Simple Logging is a simple logging library that implements the SLF4J API. Here is the source code for SLF4J Simple Logging 2.0.4. You can download its pre-compiled version slf4j-simple-2.0.4.jar at SLF4J Download Website .   Or download all of them as a single archive file: File name: slf4j-si...
2021-11-30, 2599🔥, 0💬

Bullet List in PDF with iText
How to create a PDF document with Bullet Lists using iText Java Library? Here is a tutorial for creating a PDF document with Bullet Lists using iText Java Library. 1. Create a Java file, BulletList.java: /** * A buttet list PDF with iText */ import com.itextpdf.kernel.pdf.*; import com.itextpdf.kern...
2021-11-30, 2536🔥, 0💬

Downloading SLF4J 1.7.5
The Simple Logging Facade for Java (SLF4J) serves as a simple facade or abstraction for various logging frameworks (e.g. java.util.logging, logback, log4j) allowing the end user to plug in the desired logging framework at deployment time. Download File Size and Download Location: File name: slf4j-1....
2021-11-30, 1792🔥, 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, 1658🔥, 0💬

Downloading SLF4J Components
How to download JAR files for different SLF4J Components? SLF4J not only offers the abstract API, but it also offers other components to help binding to different logging libraries. Steps to download SLF4J component JAR files: 1. Go to SLF4J Download Website . You see a list of SLF4J components. 2. ...
2021-11-30, 1125🔥, 0💬

JDK 6 tools.jar - JDK Tools
JDK 6 tools.jar is the JAR file for JDK 6 tools. It contains Java classes to support different JDK tool commands: sun.applet.Main - Supports the "appletviewer" command. sun.rmi.rmic.Main - Supports the "rmic" command. sun.security.tools.jarsigner.M ain- Supports the "jarsigner" command. sun.tools.ja...
2021-11-18, 44571🔥, 8💬

💬 2020-07-22 aa: download

💬 2020-07-15 anuj: thanks

💬 2020-01-09 cani: can i download it?

(More comments ...)

Download and Install commons-lang3-3.8.1-bin.zip
How to download and install commons-lang3-3.8.1.zip? commons-lang3-3.8.1-bin.zip is the binary package of version 3.8.1 of the Apache Commons Lang 3 library, which provides a host of helper utilities for the java.lang API. This binary package contains a pre-compiled version of Apache Commons Lang 3....
2021-11-17, 5916🔥, 1💬

JDK 8 ant-javafx.jar - JavaFX Ant Task Tool
JDK 8 ant-javafx.jar is the JAR file for JDK 8 JavaFX Ant Task Tool defined in the "com.sun.javafx.tools.ant" package. JAR File Information: Directory of C:\fyicenter\jdk-1.8.0_191\lib 10/28/2018 08:38 PM 1,500,586 ant-javafx.jar   ⇒ JDK 8 dt.jar - Java Swing Desktop ⇐ JDK/JRE 8 JAR Files List ⇑ Do...
2021-11-15, 8986🔥, 2💬

💬 2021-11-15 lingxingshui: kangou company

💬 2020-03-18 david: thanks

Downloading Apache Tomcat 8.0.0
Apache Tomcat is an open source software implementation of the Java Servlet and JavaServer Pages technologies. The Java Servlet and JavaServer Pages specifications are developed under the Java Community Process. Download File Size and Download Location: File name: apache-tomcat-8.0.0-RC5.zip File si...
2021-11-13, 8692🔥, 2💬

💬 2017-09-12 daniel: thanks a lot

Copy PDF Document with iText
How to copy PDF document using iText Java Library? Here is a tutorial for copying PDF document and update it's information using iText Java Library. 1. Create a Java file, PdfUpdate.java: /** * Copy PDF and update info */ import com.itextpdf.kernel.pdf.*; import java.io.*; public class PdfUpdate { p...
2021-11-13, 1522🔥, 0💬

Embed Image in PDF with iText
How to embed images in PDF using iText Java Library? Here is a tutorial for creating a PDF document with an embedded image using iText Java Library. 1. Create a Java file, EmbeddedImage.java: /** * An image embedded in text in PDF with iText */ import com.itextpdf.kernel.pdf.*; import com.itextpdf.l...
2021-11-13, 921🔥, 0💬

Get PDF Document Info with iText
How to get PDF document information using iText Java Library? Here is a tutorial for getting PDF document information using iText Java Library. 1. Create a Java file, PdfInfo.java: /** * Get PDF info */ import com.itextpdf.kernel.pdf.*; import java.io.*; public class PdfInfo { public static void mai...
2021-11-13, 812🔥, 0💬

<< < 9 10 11 12 13 14 15 16 17 18 19 > >>   Sort: Rank