找不到文件 'C:\Program Files\IIS Express\#'
Could not find file 'C:\Program Files\IIS Express\#'
我正在阅读一个文本文件并尝试将其解析为 html 并使用 iTextSharp
.
制作它的 pdf
我在这里加载文本文件:
string HTML = System.IO.File.ReadAllText(Server.MapPath("~/Misc/Html.txt"));
HTML = HTML.Replace("[Date]", Paristan.Broker.UI.Components.PersianDate.GetDate(DateTime.Now));
HTML = HTML.Replace("[Title]", person.Title);
HTML = HTML.Replace("[Person]", person.Name);
HTML.txt
包含如下内容:
<body id='prt-body'><div class='prt-container'><header id='prt-header'><div id='prt-header-logo'><img src='#'></div><ul id='prt-header-information'><li><span>تاریخ: </span><label>[Date]</label>...
这里我尝试将其解析为 html 并以 pdf 格式打印:
Document document = new Document();
PdfWriter.GetInstance(document, new FileStream(Server.MapPath("~/Files/Pdf/test.pdf"), FileMode.Create));
document.Open();
try
{
List<IElement> htmlarraylist = HTMLWorker.ParseToList(new StringReader(HTML), null);
for (int k = 0; k < htmlarraylist.Count; k++)
{
document.Add((IElement)htmlarraylist[k]);
}
document.Close();
}
catch
{
document.Close();
}
我也试过这个:
Document document = new Document();
PdfWriter.GetInstance(document, new FileStream(Server.MapPath("~/Files/Pdf/test.pdf"), FileMode.Create));
document.Open();
try
{
iTextSharp.text.html.simpleparser.HTMLWorker hw = new iTextSharp.text.html.simpleparser.HTMLWorker(document);
hw.StartDocument();
hw.Parse(new StringReader(HTML));
hw.EndDocument();
hw.Close();
document.Close();
}
catch
{
document.Close();
}
pdf 文件已创建但为空。我在第一个代码的第 6 行和第二个代码的第 8 行中看到以下错误。错误是:
Could not find file 'C:\Program Files\IIS Express#'.
它似乎正在解析您的 HTML 的 <img src='#'>
部分,然后尝试加载图像。尝试使用真实的图像路径,或删除 img
标签。
我正在阅读一个文本文件并尝试将其解析为 html 并使用 iTextSharp
.
我在这里加载文本文件:
string HTML = System.IO.File.ReadAllText(Server.MapPath("~/Misc/Html.txt"));
HTML = HTML.Replace("[Date]", Paristan.Broker.UI.Components.PersianDate.GetDate(DateTime.Now));
HTML = HTML.Replace("[Title]", person.Title);
HTML = HTML.Replace("[Person]", person.Name);
HTML.txt
包含如下内容:
<body id='prt-body'><div class='prt-container'><header id='prt-header'><div id='prt-header-logo'><img src='#'></div><ul id='prt-header-information'><li><span>تاریخ: </span><label>[Date]</label>...
这里我尝试将其解析为 html 并以 pdf 格式打印:
Document document = new Document();
PdfWriter.GetInstance(document, new FileStream(Server.MapPath("~/Files/Pdf/test.pdf"), FileMode.Create));
document.Open();
try
{
List<IElement> htmlarraylist = HTMLWorker.ParseToList(new StringReader(HTML), null);
for (int k = 0; k < htmlarraylist.Count; k++)
{
document.Add((IElement)htmlarraylist[k]);
}
document.Close();
}
catch
{
document.Close();
}
我也试过这个:
Document document = new Document();
PdfWriter.GetInstance(document, new FileStream(Server.MapPath("~/Files/Pdf/test.pdf"), FileMode.Create));
document.Open();
try
{
iTextSharp.text.html.simpleparser.HTMLWorker hw = new iTextSharp.text.html.simpleparser.HTMLWorker(document);
hw.StartDocument();
hw.Parse(new StringReader(HTML));
hw.EndDocument();
hw.Close();
document.Close();
}
catch
{
document.Close();
}
pdf 文件已创建但为空。我在第一个代码的第 6 行和第二个代码的第 8 行中看到以下错误。错误是:
Could not find file 'C:\Program Files\IIS Express#'.
它似乎正在解析您的 HTML 的 <img src='#'>
部分,然后尝试加载图像。尝试使用真实的图像路径,或删除 img
标签。