-
I was struggling for some time with aurigadoc 1.4.0b due to some encoding issue. The characters with diacritic will be replaced by '?' or '#' after conversion to PDF or HTML. I tried to play a bit with the code doing small changes as proposed by other patches but with no good result. So at the end I decided to rewrite parts of aurigadoc that seemed to me to not properly handle encoding.
So this...
2009-07-22 12:49:51 UTC by nobody
-
in com.aurigalogic.aurigadoc.util.MHTCompiler.createArchive
maybe need replace code:
msg.writeTo(new FileOutputStream(outputFile));
to:
FileOutputStream os = new FileOutputStream(outputFile);
msg.writeTo(os);
os.close();.
2008-06-06 03:33:38 UTC by nobody
-
in com.aurigalogic.aurigadoc.util.MHTCompiler.createArchive
maybe need replace code:
msg.writeTo(new FileOutputStream(outputFile));
to:
FileOutputStream os = new FileOutputStream(outputFile);
msg.writeTo(os);
os.close();.
2008-06-06 02:30:44 UTC by nobody
-
You should use Java Mail API. AurigaDoc is not a email program. The option to send the MHT as a email is provided for convenience.
2008-01-30 10:36:08 UTC by nobody
-
for character < use <
for character > use >.
2008-01-23 12:42:51 UTC by rloschmann
-
Hi
I have to run a command line like this "aurigadoc.bat (-mht) to generate a email with more than one attach , could someone told me how I can do this?
thanks
Gabriel.
2007-12-17 20:51:18 UTC by satrianiar
-
Hi,
I liked to create a doc with Aurigadoc and found out that special characters like é, à, ô didn't output well in HTML and PDF and were replaced by ?
I digged into the code and changed a line in class com.aurigalogic.aurigadoc.util.Util
Line 116, just change :
return doc.toXML().getBytes();
into:
return doc.toXML().getBytes("UTF-8");
That works for me now.
Thx...
2007-05-25 13:20:33 UTC by nobody
-
Hello everyone,,
has anyone found a work around this bug? because my application needs to produce a pdf file that has special characters like
2007-04-03 07:58:16 UTC by nobody