MidiQuickFix is available both as
source code and a pre-built executable jar file from the
downloads page and also as source code from
CVS
(for those who want the latest
bugs fixes)
Prerequisites
-
A properly installed j2re version 1.5 or greater is all
that is needed to run
MidiQuickFix.
-
For development you will need j2sdk 1.5 or greater installed.
Apache ant can be used with the supplied build scripts.
I use NetBeans
as my development environment so, if you would like to work
on the code, it would probably be worth installing that too.
Jar file install and use
-
Download the jar file from the
downloads page.
-
On most systems you should be able to run the program
by double-clicking its icon in your file browser or from
the command line with
java -jar MidiQuickFix-n.n.n.jar
Source code install and run
-
Download the source code from the downloads page or from CVS
-
Extract the files from the archive using either
unzip MidiQuickFix-n.n.n.zip
or
tar xzvf MidiQuickFix-n.n.n.tgz
-
For a plain
javac
build
-
cd
to the extracted MidiQuickFix-n.n.n/src
directory.
-
Compile the java source with
javac com/lemckes/MidiQuickFix/*java
-
Run the program with
java com.lemckes.MidiQuickFix.MidiQuickFix
-
For a stand-alone
ant
build
-
cd
to the extracted MidiQuickFix-n.n.n
directory.
-
Build the jar file with
ant -f simple_build.xml
-
Run the program with
java -jar dist/MidiQuickFix.jar
-
For a NetBeans build
-
Start NetBeans
-
Open the MidiQuickFix project with
File -> Open Project...
and select the extracted MidiQuickFix-n.n.n
directory.
Make MidiQuickFix the 'Main Project'.
-
Build the jar file with
Build -> Build Main Project
-
Run the program with
Run -> Run Main Project