JDK 1.1 Instructions


On the download page of the FreeMarker web site, there's a version of FreeMarker compiled for Java 1.1. To use it, you need the Java 1.2 collections classes, which are available here in a zip file called collections1_1.zip from Sun. Just put this file in your classpath.

The only difference between the Java 1.1 and Java 1.2 versions of FreeMarker is that the following line has been added to the classes that use the Java 1.2 collections classes:

import com.sun.java.util.collections.*;

This imports the classes from collections1_1.zip.

Previous: Request Variables