https://github.com/chdh/base64coder-java
A Java class module to encode and decode data in Base64 format
https://github.com/chdh/base64coder-java
base64
Last synced: 3 months ago
JSON representation
A Java class module to encode and decode data in Base64 format
- Host: GitHub
- URL: https://github.com/chdh/base64coder-java
- Owner: chdh
- Created: 2019-08-23T14:46:51.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T16:13:51.000Z (over 5 years ago)
- Last Synced: 2024-12-31T12:27:55.730Z (over 1 year ago)
- Topics: base64
- Language: Java
- Homepage: http://www.source-code.biz/base64coder/java
- Size: 230 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- Changelog: CHANGES.txt
Awesome Lists containing this project
README
Base64Coder
===========
Base64Coder is a Java class module used to encode and decode data in
Base64 format.
Project home page: http://www.source-code.biz/base64coder/java
Ant build script (build.xml)
----------------------------
The following Ant targets can be used to build and test the software:
ant package
This is the default Ant target. It compiles the Base64Coder class
and builds the JAR file (target/base64coder.jar).
ant javadoc
Generates the API documentation pages (target/apidocs).
ant test
This Ant target runs the test module TestBase64Coder.java using
JUnit. A report is written to the directory "target/test-reports".
The compiler warning messages "... is internal proprietary API ..."
are normal and cannot be suppressed. The warnings occur because the
test program uses the JDKs internal Base64 classes to test the
Base64Coder class.