Need to convert between decimal and binary byte units?
This is a unit converter make just for that purpose.
Different units for bytes are used in different places:
- File sizes (binary megabytes = MiB)
- Internet bandwidth (decimal megabits = Mbit)
- Hard drive sizes (decimal gigabytes = GB)
- RAM sizes (binary gigabytes = GiB)
This program helps you convert these units easily.
- Java 1.5 or later
- Ant or Make — to compile
If your web browser supports Java applets, you can use the application on the applet page.
This program can also be run as a standalone Java application:
- To compile all source files locally, run
ant
ormake
. - To run locally compiled files, use
ant run
ormake run
. - To package everything in a distributable JAR, use
ant jar
.
I originally created this as an experiment in 2008 to:
- use JGoodies Forms to create a GUI with as few lines of code as possible, and to
- package a Java app for deployment.
This software is freeware. For details, see the LICENSE file.