有谁知道这个的语法?我一直在寻找各处,我能找到的就是C ++代码。我正在尝试使用System.IO.Packaging命名空间以编程方式密码保护excel文件。
有什么想法吗?
附加说明:
我没有使用Excel互操作 - 而是使用System.IO.Packaging命名空间来加密和密码保护excel文件。
答案 0 :(得分:8)
如果你想要一个Excel密码,你只需要这样:
using Microsoft.Office.Interop.Excel
//create your spreadsheet here...
WorkbookObject.Password = password;
WorkbookObject.SaveAs("spreadsheet.xls")
这需要安装Excel。
当然,这与System.IO.Packaging
无关,所以你可能需要重申你的问题......
答案 1 :(得分:1)
您必须在工作表上使用SaveAs方法。它有一个设置密码的参数。这是VB中的一个例子,可以转换为C#
答案 2 :(得分:1)
using System.IO;
using Excel=Microsoft.Office.Interop.Excel;
class ExcelUtil
{
public string Filename;
private Excel.Application oexcel;
private Excel.Workbook obook;
private Excel.Worksheet osheet;
public void createPwdExcel()
{
try
{
// File name and path, here i used abc file to be
// stored in Bin directory in the sloution directory
//Filename = (AppDomain.CurrentDomain.BaseDirectory + "abc.xls");
if (File.Exists(Filename))
{
File.Delete(Filename);
}
if (!File.Exists(Filename))
{
// create new excel application
Excel.Application oexcel = new Excel.Application();
oexcel.Application.DisplayAlerts = false;
obook = oexcel.Application.Workbooks.Add(Type.Missing);
oexcel.Visible = true;
Console.WriteLine("Generating Auto Report");
osheet = (Excel.Worksheet)obook.Sheets.Add(Type.Missing, Type.Missing, Type.Missing, Type.Missing);
osheet.Name = "Test Sheet";
osheet.get_Range("A1:G1").Merge();
osheet.get_Range("A1").Value = @"Implementing Password Security on Excel Workbook Using Studio.Net";
osheet.get_Range("A1").Interior.ColorIndex = 5;
osheet.get_Range("A1").Font.Bold = true;
string password = "abc";
obook.WritePassword = password;
obook.SaveAs("Chandra.xlsx");
// otherwise use the folowing one
// TODO: Labeled Arguments not supported. Argument: 2 := 'password'
// end application object and session
osheet = null;
obook.Close();
obook = null;
oexcel.Quit();
oexcel = null;
}
}
catch (Exception ex)
{
}
}
}
答案 3 :(得分:0)
使用System.IO.Packaging
是不可能的。您必须使用Worksheet.SaveAs
方法使用Microsoft.Office.Interop.Excel
。这需要在目标系统上安装Excel。