我的网络方法在我的 %temp% 文件夹中创建了一个 pdf 文件,并且可以正常工作。然后我想使用下面的代码向该文件添加一些自定义字段(元)。
无论我使用它的方法还是块刚刚结束,该类PdfStamper
都会生成一个。仍然保留文件句柄的进程是 webdev Web 服务器本身(我在 VS2010 SP1 中调试)。IOException
.Close()
using
private string AddCustomMetaData(string guid, int companyID, string filePath)
{
try
{
PdfReader reader = new PdfReader(filePath);
using (FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite))
{
PdfStamper st = new PdfStamper(reader, fs);
Dictionary<string, string> info = reader.Info;
info.Add("Guid", guid);
info.Add("CompanyID", companyID.ToString());
st.MoreInfo = info;
st.Close();
}
reader.Close();
return guid;
}
catch (Exception e)
{
return e.Message;
}
}
无论我尝试什么,它都会不断抛出异常st.Close();
,更准确地说:
该进程无法访问文件“C:\Users[my username]\AppData\Local\Temp\53b96eaf-74a6-49d7-a715-6c2e866a63c3.pdf”,因为它正被另一个进程使用。
要么是我忽略了一些明显的事情,要么是PdfStamper
我尚未意识到的课程存在问题。使用的 itextsharp 版本是 5.3.3.0 和 5.4.0.0,问题是一样的。
任何见解将不胜感激。
编辑:我目前正在“围绕”这个问题进行编码,但我还没有找到任何解决方案。