PD4ML pd4ml = new PD4ML();
pd4ml.enableTableBreaks(true);
pd4ml.PageInsets = new System.Drawing.Rectangle(5, 5, 5, 5);
pd4ml.PageSize = PD4Constants.getSizeByName("LETTER");
Byte[] byteArray = Encoding.ASCII.GetBytes(content);
MemoryStream stream = new MemoryStream(byteArray);
FinalPath = FinalPath + @"" + VersionID;
if (!Directory.Exists(FinalPath))
Directory.CreateDirectory(FinalPath);
string FileName = FinalPath +FileName+ ".pdf";
pd4ml.render(stream,new System.IO.FileStream(FileName, System.IO.FileMode.CreateNew));
stream.Flush();
stream.Close();
stream.Dispose();
//In another method I'm opening this file
File stream fs = File.Open(path, FileMode.Open, FileAccess.Read);`
我正在使用pd4ml.render()方法生成PDF。当我使用 render 方法创建此文件时,它会在系统内部的某个地方打开。这就是为什么当我尝试使用Filestream fs=new Filestream(path,FileMode.Open,FileAccess.Read)打开它时
它抛出并且文件异常正被另一个进程使用。请指导我该怎么做。
我已经在我的代码中使用了FileShare.ReadWrite属性和File.OpenRead(path),但它对我不起作用。
您正在泄漏应该释放的流对象。具体来说,这里作为第二个参数传递
的参数:pd4ml.render(stream,new System.IO.FileStream(FileName, System.IO.FileMode.CreateNew));
与其创建新流作为该方法调用的一部分,不如将其放在另一个变量中并对其进行Dispose
(最好对它和stream
使用using
语句,而不是手动)。
using(var stream2 = new System.IO.FileStream(FileName, System.IO.FileMode.CreateNew))
{
pd4ml.render(stream,stream2);
}
您的问题是File.Create
将打开一个stream
,允许您对文件执行您喜欢的操作,请参阅:http://msdn.microsoft.com/en-us/library/d62kzs03.aspx
因此,从技术上讲,它已经在使用中。
只需完全删除File.Create
即可。如果文件不存在,StreamWriter 将处理文件的创建。
使用流时,最好这样做
using (Stream s = new Stream())
{
} // Stream closes here
If you also create the output stream, make sure to close it.
请参阅 http://www.codeproject.com/Questions/1097511/Can-not-opening-pdfs-generated-using-pd-ml-using-C