gpt4 book ai didi

c# - iTextSharp XMLWorker 不读取 CSS 标签

转载 作者:太空宇宙 更新时间:2023-11-04 02:42:09 26 4
gpt4 key购买 nike

所以我一直在为这个绞尽脑汁。以下是代码:

string content = ConvertHTMLToXHTML(content); //This is something I wrote
var doc = new iTextSharp.text.Document(PageSize.LETTER, 10f, 10f, 10f, 0f);
var writer = PdfWriter.GetInstance(doc, ms);
doc.Open();

ICSSResolver cssResolver = null;
cssResolver = XMLWorkerHelper.GetInstance().GetDefaultCssResolver(false);
cssResolver.AddCss(@"code { padding: 2px 4px; }", "utf-8", true);

//****This is the key line******
cssResolver.AddCssFile(@"<the css file>", true);

var hpc = new HtmlPipelineContext(new CssAppliersImpl(new XMLWorkerFontProvider()));
hpc.SetAcceptUnknown(true).AutoBookmark(true).SetTagFactory(tagProcessors); // inject the tagProcessors
hpc.SetLinkProvider(new LinkProvider(currentWorkingDirectory));

var htmlPipeline = new HtmlPipeline(hpc, new PdfWriterPipeline(doc, writer));

var pipeline = new CssResolverPipeline(cssResolver, htmlPipeline);

var worker = new XMLWorker(pipeline, true);
var xmlParser = new XMLParser(true, worker, Encoding.UTF8);

//Ok, now we can finally parse all this
using (var srHtml = new StringReader(content)) {
xmlParser.Parse(srHtml);
}

doc.Close();

请注意我写“This is the key line”的那一行。这就是我用于调试目的的内容。

因此,在内容中,我有有效的 <link href='[valid address]' rel="stylesheet" /><head> 中设置标签。预处理风格,我确保使用我的方法 ConvertHTMLtoXHTML 将内容解析为完全解析的 href(它使用 HTMLAgilityPack 并且我验证了内容具有完全解析的 URL)。示例完全解析的 url 类似于 http://localhost/foo/bar.css

但是,内容不使用 CSS 呈现。因此,我去了 AddCssFile(看到这是关键线)并尝试通过 URI 路径将文件添加到那里(这都在我的系统上,所以我使用“http://localhost/foo/bar/blah.css”)。这引发了一个异常,因为它找不到文件(异常是 System.IO.IOException: retrieve.file.from.nothing )。

然后通过 AddCssFile(例如:D:\foo\bar\blah.css)添加文件,因为它在我的文件系统中,因此成功了!!

我的问题是,是否有办法让 XMLWorker 读取链接标签(如果我已经完全解析它们),而不是我必须找到所有链接标签,将它们转换到它们在我的磁盘上的位置,并通过 CSSResolver 添加它们?

附加信息:

  • ASP.Net MVC 4
  • iTextSharp 5.5.8
  • iTextSharp.xmlworker 5.5.8

最佳答案

确定了一个解决方案 - 必须深入研究 iTextSharp 的源代码才能弄清楚发生了什么,因为我使用的是已编译的 DLL,并且异常消息并不是完全有用。

顺便说一下,这是一个 2 parter

获取CSS时需要进行身份验证

我的网站只允许经过身份验证的用户使用该网站。因此,当 iTextSharp 制作 WebRequest 时在 FileRetrieveImpl ,它正在发出一个简单的未经身份验证的 GET 请求。然后请求失败,返回 401 - Unauthorized,这又抛出 retrieve.file.from.nothing。来自 iTextSharp 的异常。

为了解决这个问题,我需要使用下面的代码

WebRequest w = WebRequest.Create(url);
w.UseDefaultCredentials = true;
w.PreAuthenticate = true;
w.Credentials = CredentialCache.DefaultCredentials;

在提出请求之前。因此,我需要覆盖 FileRetrieveICSSResolver 上我正在使用的解析器。我决定我需要当前的 FileRetrieveImpl 实现同时重写方法 ProcessFromHref这让我很伤心。

因此,我写了以下内容,我从 FileRetrieveImpl 复制并粘贴了我需要的元素。 .

private class CustomFileRetriever : FileRetrieveImpl {
private static ILogger LOGGER = LoggerFactory.GetLogger(typeof(FileRetrieveImpl));
private IList<string> rootdirs;
private IList<string> urls;

public CustomFileRetriever() {
rootdirs = new List<string>();
urls = new List<string>();
}

private Uri DetectWithRootUrls(string href) {
foreach (string root in urls) {
try {
return new Uri(root + href);
} catch (UriFormatException) {
}
}
throw new UriFormatException();
}

public override void ProcessFromHref(string href, IReadingProcessor processor) {
if (LOGGER.IsLogging(Level.DEBUG)) {
LOGGER.Debug(string.Format(LocaleMessages.GetInstance().GetMessage("retrieve.file.from"), href));
}
Uri url = null;
bool isfile = false;
string f = href;
try {
url = new Uri(href);
} catch (UriFormatException) {
try {
url = DetectWithRootUrls(href);
} catch (UriFormatException) {
// its probably a file, try to detect it.
isfile = true;
if (!(File.Exists(href))) {
isfile = false;
foreach (string root in rootdirs) {
f = Path.Combine(root, href);
if (File.Exists(f)) {
isfile = true;
break;
}
}
}
}
}

Stream inp = null;

if (null != url) {

//***********************
//Begin changed part
//***********************
WebRequest w = WebRequest.Create(url);
w.UseDefaultCredentials = true;
w.PreAuthenticate = true;
w.Credentials = CredentialCache.DefaultCredentials;
//***********************
//End changed part
//***********************

try {
inp = w.GetResponse().GetResponseStream();
} catch (WebException) {
throw new IOException(LocaleMessages.GetInstance().GetMessage("retrieve.file.from.nothing"));
}
} else if (isfile) {
inp = new FileStream(f, FileMode.Open, FileAccess.Read, FileShare.Read);
} else {
throw new IOException(LocaleMessages.GetInstance().GetMessage("retrieve.file.from.nothing"));
}
Read(processor, inp);
}

private void Read(IReadingProcessor processor, Stream inp) {
try {
int inbit = -1;
while ((inbit = inp.ReadByte()) != -1) {
processor.Process(inbit);
}
} catch (IOException e) {
throw e;
} finally {
try {
if (null != inp) {
inp.Close();
}
} catch (IOException e) {
throw new RuntimeWorkerException(e);
}
}
}
}

然后,我简单地覆盖了默认的文件检索器

ICSSResolver cssResolver = XMLWorkerHelper.GetInstance().GetDefaultCssResolver(false);
cssResolver.FileRetrieve = new CustomFileRetriever();

这解决了我调用 AddCssFile 的问题并得到 retrieve.file.from.nothing .但是,我不只是想调用 AddCssFile,我想让 iTextSharp 识别链接。因此,这将引导我进入下一部分。

HTML 源代码中的链接标记需要特定属性

在我的问题陈述中,我写到它没有接收到 <link href='[valid address]' rel="stylesheet" />。 .这是因为它缺少属性标记 type="text/css" .因此,我应该有 <link href='[valid address]' rel="stylesheet" type="text/css"/>

我通过阅读源代码确定了这一点(参见 Link)。在处理 XHTML 标签时,它会查看标签是否完整存在并完全解析。

关于c# - iTextSharp XMLWorker 不读取 <link> CSS 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34549881/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com