3 回答
TA贡献1880条经验 获得超4个赞
在进行了一些挖掘之后,我找到了一种很好的方式来实现ITextSharp所需的功能。
这是一些示例代码,如果将来会帮助其他人:
protected void Page_Load(object sender, EventArgs e)
{
Document document = new Document();
try
{
PdfWriter.GetInstance(document, new FileStream("c:\\my.pdf", FileMode.Create));
document.Open();
WebClient wc = new WebClient();
string htmlText = wc.DownloadString("http://localhost:59500/my.html");
Response.Write(htmlText);
List<IElement> htmlarraylist = HTMLWorker.ParseToList(new StringReader(htmlText), null);
for (int k = 0; k < htmlarraylist.Count; k++)
{
document.Add((IElement)htmlarraylist[k]);
}
document.Close();
}
catch
{
}
}
- 3 回答
- 0 关注
- 401 浏览
添加回答
举报