written by Johannes Fiala, johannes.fiala@fwd.at on May, 3rd 2003
I was annoyed by the fact that the ant JspC task currently only supports UTF-8.
So I patched JspC.java and allowed for using a new parameter javaEncoding="..." which can be set to the
encoding you need.
Additionally, this makes the usage of Jspc with ant more consistent with the Jspc Tomcat compilation, which
allows javaEncoding to be set in /conf/web.xml:
 |  |  |
 |
javaEncoding Java file encoding to use for generating java
source files. [UTF8]
|  |
 |  |  |
However, there is a small inconsistency in the original source of TC 4.1.24/5.0.1 compared to /conf/web.xml.
It is "UTF8" at web.xml, but "UTF-8" at JspC.java. I left this inconsistency, as I don't know the reasons.