images and stylesheets aren't copied
Status: Alpha
Brought to you by:
quinntaylor
Platform: Windows 7, Eclipse Helios
At file Doclet.java in method copyResourceFileToFile(...)
Images and stylsheets aren't copied because the Method getResourceAsStream doesn't work with system specific paths.
Should changed to getResourceAsStream(srcPath + "/" + srcFile);
By copying files from jar-File to Filesystem there is no Encoding specified, under Windows 7 the copied images are destroyed.
Should changed to new InputStreamReader(stream, "ISO-8859-1"); and
new OutputStreamWriter(new FileOutputStream(new File(destDir, dstFile), append), "ISO-8859-1");
This changes works for me under Windows.
Changed Method