<< < 1 2 3 4 5 6 7 8 > >>   Sort: Rank

Snappy-Java - Compress and Decompress Files
How to Compress and Decompress Files with Snappy-Java? If you want to compress or decompress files with Snappy-Java, you can write 2 Java programs as shown in this tutorial. The first program compresses a given file, CompressFIle.java: // CompressFIle.java // Copyright (c) FYIcenter.com import org.x...
2021-07-13, 1499🔥, 0💬

jboss-marshalling-1.4.1.Final.jar - JBoss Marshalling API
JBoss Marshalling is an alternative serialization API that fixes many of the problems found in the JDK serialization API while remaining fully compatible with java.io.Serializable and its relatives, and adds several new tunable parameters and additional features, all of which are pluggable via facto...
2021-03-12, 6437🔥, 2💬

💬 2021-03-12 多林: 学习

💬 2016-11-13 johnchen: download

jmxtools-1.2.1.jar - JMX Tools
The JMX technology provides the tools for building distributed, Web-based, modular and dynamic solutions for managing and monitoring devices, applications, and service-driven networks. By design, this standard is suitable for adapting legacy systems, implementing new management and monitoring soluti...
2021-02-18, 31955🔥, 6💬

💬 2020-06-24 test: good

💬 2019-08-28 Shao: good

💬 2018-02-28 chenqingsong: need it

(More comments ...)

ANTLR "Arithmetic" Grammar
Where to get an "Arithmetic" grammar for ANTLR? You can download a copy of the "Arithmetic" grammar for ANTLR at GitHub &gt; antlr &gt; grammars-v4 &gt; arithmetic" . You can follow these steps to play with arithmetic.g4. 1. View the grammar file, arithmetic.g4 (modified to reduce space)...
2021-01-09, 8597🔥, 0💬

ANTLR "Arithmetic" Grammar - Graphical Output
Where to get a graphical output example of the "Arithmetic" grammar with ANTLR? You can run the following ANTLR TestRig command to generate a graphical output from the "Arithmetic" lexer and parser: \fyicenter&gt;java -cp .;antlr-4.10.1-complete.jar \ org.antlr.v4.gui.TestRig arithmetic equation...
2021-01-09, 7144🔥, 0💬

ANTLR TestRig Graphical Output
How to generate Graphical Output from parser using TestRig? ANTLR TestRig can generate graphical output instead of text tree, if you use the "-gui" option instead of "-tree": \fyicenter&gt;java -cp .;antlr-4.10.1-complete.jar org.antlr.v4.gui.TestRig Hello r -gui hello you ^Z The above test sess...
2021-01-09, 7120🔥, 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, 1383🔥, 0💬

What Is commons-cli-1.4-bin.zip?
What Is commons-cli-1.4-bin.zip? commons-cli-1.4-bin.zip is the binary package of Apache Commons CLI 1.4 in ZIP format. Apache Commons CLI library provides an API for parsing command line options passed to programs. Download File Size and Download Location: File name: commons-cli-1.4-bin.zip File si...
2021-01-09, 1167🔥, 0💬

ANTLR Parser Java API
Where is ANTLR API for Java integration? ANTLR API for Java is available at https://www.antlr.org/api/Java /. To integrate the lexer and parser generated from ANTLR into your Java application, you can follow these steps: 1. Create a character stream (org.antlr.v4.runtime.CharStre am)object from the ...
2020-12-26, 7008🔥, 0💬

ANTLR "Arithmeic" Grammar Java Test
How to write a Java program to test the lexer and parser generated from ANTLR? If you have the lexer and parser generated from the arithmetic.g4 grammar file by ANTLR as shown in the previous tutorial, you use the following Java program to test it: // Copyright (c) FYIcenter.com import org.antlr.v4....
2020-12-26, 6932🔥, 0💬

Downloading and Reviewing commons-cli.jar
Where to find answers to frequently asked questions on Downloading and Reviewing commons-cli.jar. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Downloading and Reviewing commons-cli.jar: commons-cli.jar, What Is It? Download Apache Commons CLI Binar...
2020-12-26, 1156🔥, 0💬

commons-cli.jar, What Is It?
What is commons-cli.jar? commons-cli.jar is the Java library of Apache Commons CLI. Apache Commons CLI library provides an API for parsing command line options passed to programs. It's also able to print help messages detailing the options available for a command line tool. Releases of Apache Common...
2020-12-26, 1004🔥, 0💬

FAQ for Apache Commons CLI JAR Library
Where to find answers to frequently asked questions on Apache Commons CLI Java library, commons-cli.jar? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team Apache Commons CLI Java library, commons-cli.jar: Downloading and Reviewing commons-cli.jar commons-c...
2020-12-26, 868🔥, 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, 1234🔥, 0💬

Using commons-cli.jar in Java Programs
Where to find answers to frequently asked questions on Using commons-cli.jar in Java Programs. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using commons-cli.jar in Java Programs: Commons CLI API - Short Options Commons CLI API - Short Options Exam...
2020-12-22, 1074🔥, 0💬

Commons CLI API - Long Options
How to manage long options with Apache Commons CLI API? A long option is a long keyword (multiple characters) option prefixed with "--". For example, "--help" is a long option. A long option is supported in Apache Commons CLI API as an alias of a short option. For example, "--help" is an alias of "-...
2020-12-22, 744🔥, 0💬

Commons CLI API - Short Options
How to manage short options with Apache Commons CLI API? A short option is a single character option prefixed with "-". For example, "-h" is a short option. A short option can be managed with Apache Commons CLI API in 4 steps: 1. Define Options - A short option can be defined and added to the option...
2020-12-22, 740🔥, 0💬

Commons CLI API - Short Options Example
Where to get a Java example of managing short options with Commons CLI API? Here is good Java example of managing short options with Commons CLI API, ShortOptionTest.java: // Copyright (c) 2018 FYIcenter.com import org.apache.commons.cli.Options ;import org.apache.commons.cli.Command LineParser;impo...
2020-12-22, 660🔥, 0💬

commons-collections4-4.4-sources.jar - Apache Commons Collections
commons-collections4-4.4-sourc es.jaris the source JAR file for Apache Commons Collections 4.2, which provides additional collection handling functionalities on top of JDK library. JAR File Size and Download Location: JAR name: commons-collections4-4.4-sourc es.jarTarget JDK version: 8 Dependency: N...
2020-12-15, 101590🔥, 0💬

What Is commons-collections4-4.0.jar
What Is commons-collections4-4.0.jar? commons-collections4-4.0.jar is the JAR file for Apache Commons Collections 4.0, which provides additional collection handling functionalities on top of JDK library. JAR File Size and Download Location: JAR name: commons-collections4 JAR version: 4.0 Target JDK ...
2020-12-15, 2326🔥, 0💬

Commons CLI API - Options with Arguments
How to manage options with arguments with Apache Commons CLI API? An option with argument is an option that requires an input arguement. The argument value must be specified immediately after the option name. For example, "-i world", "-input world", "--input world" are alias of a single option with ...
2020-12-15, 1020🔥, 0💬

Commons CLI API - Long Options Example
Where to get a Java example of managing long options with Commons CLI API? Here is good Java example of managing long options with Commons CLI API, ShortOptionTest.java: // Copyright (c) 2018 FYIcenter.com import org.apache.commons.cli.Options ;import org.apache.commons.cli.Command LineParser;import...
2020-12-15, 858🔥, 0💬

ANTLR TestRig Command and Options
What is the ANTLR TestRig command and its options? I have downloaded the antlr-4.10.1-complete.jar. ANTLR TestRig allows you to test the lexer and parser generated by ANTLR interactively from the command prompt. The main class of ANTLR TestRig is org.antlr.v4.gui.TestRig. You can see its command arg...
2020-12-02, 8887🔥, 0💬

ANTLR "Hello" Grammar File and Test
How to create a simple "Hello" grammar file and test it with ANTLR? There 4 steps you need to follow to create "Hello" grammar file and test it: 1. Create grammar file, Hello.g4: // Define a grammar called Hello grammar Hello; r : 'hello' ID ; // match keyword hello followed by an identifier ID : [a...
2020-12-02, 7252🔥, 0💬

<< < 1 2 3 4 5 6 7 8 > >>   Sort: Rank