<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Date

ooxml-schemas-1.0.jar - Office Open XML Schemas - Part 10
OOXML (Office Open XML) Schemas. JAR File Size and Download Location: File name: ooxml-schemas.jar, ooxml-schemas-1.0.jar File size: 14003759 bytes Date modified: 11/07/2008 Download: OOXML Schemas (part of POI) List of Classes in the JAR: &lt;&lt; Previous part org/openxmlformats/schemas/wo. ..
2009-12-14, 7673🔥, 0💬

Download and Install poi-bin-3.15-20160924.zip
How to download and install poi-bin-3.15-20160924.zip? Apache POI Java library provides an API for Microsoft document files of Word, Excel, PowerPoint, and Visio. You can follow these steps to download and install poi-bin-3.15-20160924.zip to use Apache POI Java library: 1. Go to the Apache POI Webs...
2017-04-04, 7603🔥, 1💬

💬 2016-12-22 Pandi: Thanks

antlr-3.1.jar - ANTLR Parser Generator 3.1
What Is antlr-3.1.jar - ANTLR Parser Generator 3.1? antlr-3.1.jar is the JAR file for the ANTLR tool for generating Java code. ANTLR, ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from gramma...
2009-02-08, 7568🔥, 0💬

jmxtools-1.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...
2010-03-25, 7555🔥, 0💬

jgroups-2.9.0.GA.jar - JGroups
JGroups is a toolkit for reliable multicast communication. (Note that this doesn't necessarily mean IP Multicast, JGroups can also use transports such as TCP). It can be used to create groups of processes whose members can send messages to each other. JAR File Size and Download Location: File name: ...
2010-03-19, 7527🔥, 0💬

commons-digester-1.7.jar - The Digester Component
The Digester package lets you configure an XML -> Java object mapping module, which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. JAR File Size and Download Location: File name: commons-digester.jar, commons-digester-1.7.jar File size: 1399...
2009-11-13, 7437🔥, 0💬

Registry has value '1.8', but '1.7' is required
I have JDK 7 stored C:\java\jdk1.7 folder. When I run the "C:\java\jdk1.7\bin\java -version" command, I am getting the following error: Error: Registry key 'Software\JavaSoft\Java Runtime Environment'\CurrentVersion' has value '1.8', but '1.7' is required. Error: could not find java.dll Error: Could...
2015-06-05, 7419🔥, 0💬

lz4-1.2.0.jar - LZ4 Compression
LZ4 compression for Java, based on Yann Collet's work available at http://code.google.com/p/lz4/. JAR File Size and Download Location: File name: lz4.jar, lz4-1.2.0.jar File size: 165505 bytes Date modified: 08-Aug-2013 Download: List of Classes in the JAR: net/jpountz/lz4/LZ4BlockInputS treamnet/jp...
2015-11-17, 7362🔥, 3💬

💬 2015-11-17 FYIcenter.com: de nada ☺

💬 2015-11-16 Carlos: obrigado por nos ceder esse material para o nosso desenvolvimento.

What Is ANTLR Parser Generator
What is ANTLR Parser Generator? ANTLR (ANother Tool for Language Recognition) is a powerful parser generator for reading, processing, executing, or translating structured text or binary files. It's widely used to build languages, tools, and frameworks. From a grammar, ANTLR generates a parser that c...
2018-10-20, 7299🔥, 0💬

commons-validator-1.3.1.jar - Apache data validator
A common issue when receiving data either electronically or from user input is verifying the integrity of the data. This work is repetitive and becomes even more complicated when different sets of validation rules need to be applied to the same set of data based on locale. Error messages may also va...
2011-01-04, 7261🔥, 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💬

cglib-nodep-2.2.3.jar - CGLib
cglib is a powerful, high performance and quality Code Generation Library, It is used to extend JAVA classes and implements interfaces at runtime. See samples and API documentation to learn more about features. JAR File Size and Download Location: File name: cglib.jar, cglib-nodep-2.2.3.jar File siz...
2022-06-01, 7181🔥, 2💬

Download and Review ANTLR Parser Generator
Where to find answers to frequently asked questions on Downloading and Reviewing ANTLR Parser Generator. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Downloading and Reviewing ANTLR Parser Generator: What Is ANTLR Parser Generator ANTLR Runtime Sou...
2018-10-20, 7170🔥, 0💬

commons-digester-3.1.3.jar - Apache Digester
Many projects read XML configuration files to provide initialization of various Java objects within the system. There are several ways of doing this, and the Digester component was designed to provide a common implementation that can be used in many different projects. Basically, the Digester packag...
2016-11-28, 7154🔥, 2💬

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

jacl-1.4.1.jar - Jacl - Tcl interpreter
Jacl is a self-contained implementation of a Tcl interpreter, written entirely in Java. Jacl also includes features that facilitate communication between a Java interpreter and a Tcl interpreter. JAR File Size and Download Location: File name: jacl.jar, jacl-1.4.1.jar File size: 875042 bytes Date mo...
2009-11-06, 7146🔥, 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, 7123🔥, 0💬

opencsv-2.3.jar - OpenCSV
A Simple CSV Parser for Java under a commercial-friendly Apache 2.0 license JAR File Size and Download Location: File name: opencsv.jar, opencsv-2.3.jar File size: 14146 bytes Date modified: 15-Apr-2011 Download: OpenCSV Manifest of the JAR: Build-Timestamp: 2011-04-14 21:00:31 Implementation-Title:...
2016-04-20, 7121🔥, 1💬

ANTLR Commands and Examples
Where to find answers to frequently asked questions on ANTLR Commands and Examples? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on ANTLR Commands and Examples: ANTLR Command and Options ANTLR TestRig Command and Options ANTLR "Hello" Grammar File and...
2020-12-02, 7103🔥, 0💬

castor-1.3.jar - Caster Data Binding
Castor is an Open Source data binding framework for Java. It's the shortest path between Java objects, XML documents and relational tables. Castor provides Java-to-XML binding, Java-to-SQL persistence, and more. JAR File Size and Download Location: File name: castor.jar, castor-1.3.jar File size: 78...
2010-03-26, 7084🔥, 0💬

maven-2.2.1-uber.jar - Apache Maven - Part 4
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. JAR File Size and Download Location: File name: maven.jar, maven-2.2.1-uber...
2010-03-17, 7072🔥, 0💬

ANTLR "Hello" Lexer and Parser Error
How to test the "Hello" lexer and parser with invalid source code? I have created the "Hello" grammar and generated the "Hello" lexer and parser. To test the "Hello" lexer and parser with invalid source code, we need to review the "Hello" grammar again. \fyicenter&gt;more hello.g4 // Define a gr...
2020-12-02, 7044🔥, 0💬

jarjar-1.0.jar - Jar Jar Links 1.0
Jar Jar Links is a utility that makes it easy to repackage Java libraries and embed them into your own distribution. JAR File Size and Download Location: File name: jarjar.jar, jarjar-1.0.jar File size: 112749 bytes Date modified: 01/31/2009 Download: Jar Jar Links Manifest of the JAR: Main-Class: c...
2009-11-16, 7029🔥, 0💬

jsr250-api-1.0.jar - JSR 250 - Common Annotations for the Java Platform
JSR 250: Common Annotations for the Java Platform defines annotations for common semantic concepts in the J2SE and J2EE platforms that apply across a variety of individual technologies. With the addition of JSR 175 (A Metadata Facility for the Java Programming Language) in the Java platform we envis...
2012-03-05, 7027🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 > >>   Sort: Date