作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的项目(Silverlight 端)的文件夹(Common)中有一个 xlsx 文件(New.xlsx)。
我想在按钮单击事件上访问该文件路径并打开该文件。
我使用以下路径:
string path = @"/Common/New.xlsx";
string path1 = excel.Workbooks.Open(path);
excel.Visible = true;
但它不起作用,我无法打开该文件。
如何在Silverlight中使用文件路径访问文件?
最佳答案
您可以使用几个选项来授予对相关文件的访问权限。
SaveFileDialog
类要求用户保存文件。然后,用户必须选择要保存文件的位置,然后手动打开它。public static byte[] GetBytesFromStream(Stream input){
byte[] buffer = new byte[16*1024];
using (MemoryStream ms = new MemoryStream()){
int read;
while ((read = input.Read(buffer, 0, buffer.Length)) > 0){
ms.Write(buffer, 0, read);
}
return ms.ToArray();
}
}
public void OnButtonClick(){
var templateUri = new Uri("/Common/New.xlsx, UriKind.Relative");
var templateStream = Application.GetResourceStream(templateUri).Stream;
var bytes = GetBytesFromStream(templateStream);
var sfd = new SaveFileDialog() {
DefaultExt = "xlsx",
Filter = "Excel Files (*.xlsx)|*.xlsx|All files(*.*)|*.*",
FilterIndex = 1
};
if (sfd.ShowDialog() == true) {
using (Stream stream = sfd.OpenFile()) {
stream.Write(bytes, 0, bytes.Length);
}
}
}
public void OnButtonClick(){
string link = "{the url/endpoint to the file on the server}";
System.Windows.Browser.HtmlPage.Window.Navigate(new Uri(link), "_blank");
}
AutomationFactory
路线前进,但这需要进行大量配置更改,如建议的 here 我认为将这些东西放在服务器上比在客户端上要好得多。服务器更有能力处理此类处理。
关于c# - 如何从 silverlight 文件夹中打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34461886/
我是一名优秀的程序员,十分优秀!