我正在使用ITextSharp,我想将CSS 包含到我的 PDF中。以下是我当前的代码:
ByteArrayInputStream bis = new ByteArrayInputStream(htmlSource.toString().getBytes());
ByteArrayInputStream cis = new ByteArrayInputStream(cssSource.toString().getBytes());
XMLWorkerHelper.getInstance().parseXHtml(writer, document, bis, cis);
但问题是我缺乏. ByteArrayInputStream
甚至System.IO
无法修复错误。还有其他解决方法吗?
非常感谢!