将MS Word文档转换为PDF后。如果我将转换后的单词的路径发送到pdf。即PDF。文件提取我将在服务器中发布网站时收到拒绝访问的错误。它在本地机器上工作。我在代码中留下了什么,或者我需要安装什么。
public string WordtoPdf_Input(string wordFileName_input)
{
try
{
Microsoft.Office.Interop.Word.Application appWord_input = new Microsoft.Office.Interop.Word.Application();
object _MissingValue_ip = System.Reflection.Missing.Value;
//filename_doc = System.IO.Path.GetFileName(LblFleip.Text);
//wordFileName = LblFleip.Text;
string pdfFileName = string.Empty;
appWord_input.Visible = false;
appWord_input.ScreenUpdating = false;
// Cast as Object for word Open method
object filename = (object)wordFileName_input;
// Use the dummy value as a placeholder for optional arguments
Microsoft.Office.Interop.Word.Document doc = appWord_input.Documents.Open(ref filename, ref _MissingValue_ip,
ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip,
ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip,
ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip);
doc.Activate();
InputFilename = pdfFileName = Path.ChangeExtension(wordFileName_input, ".pdf");
object fileFormat = WdSaveFormat.wdFormatPDF;
//All is well until here, Save thinks the excelfile is readonly
object tmpName = Path.GetTempFileName();
File.Delete(tmpName.ToString());
// Save document into PDF Format
doc.SaveAs(ref tmpName,
ref fileFormat, ref _MissingValue_ip, ref _MissingValue_ip,
ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip,
ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip,
ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip);
// Close the Word document, but leave the Word application open.
// doc has to be cast to type _Document so that it will find the
// correct Close method.
object saveChanges = WdSaveOptions.wdDoNotSaveChanges;
((_Document)doc).Close(ref saveChanges, ref _MissingValue_ip, ref _MissingValue_ip);
doc = null;
// word has to be cast to type _Application so that it will find
// the correct Quit method.
((_Application)appWord_input).Quit(ref _MissingValue_ip, ref _MissingValue_ip, ref _MissingValue_ip);
appWord_input = null;
File.Delete(InputFilename.ToString());
File.Move(tmpName.ToString(), InputFilename.ToString());
//File.Move(tmpName,InputFilename.ToString())
filePath_input = InputFilename.ToString();
GC.Collect();
GC.WaitForPendingFinalizers();
}
catch (Exception ex)
{
}
finally
{
GC.Collect(); // force final cleanup!
GC.WaitForPendingFinalizers();
}
return filePath_input;
}
Public void PDFnumofPagecount()
{
LblFleip.Text = filePath_input;
PdfReader readerPages_ip = new PdfReader(LblFleip.Text);
NumberofPages_ip = readerPages_ip.NumberOfPages;
txtbNumberofPages_ip.Text = NumberofPages_ip.ToString();
readerPages_ip.Close();
}
i have used itextsharp for reading pages and extraction of PDF
答案 0 :(得分:0)
您是否在发出错误的机器上检查了用户的权限(以确保他们具有所需的读/写权限)?