通过网络服务发送文件

发布于 2024-09-14 13:09:55 字数 56 浏览 3 评论 0原文

我如何通过我的网站中的网络服务发送文件 与 Gmail 附件相同 在 c# 和 asp.net 中

how can i send a file via web service in my site
same as gmail attachments
in c# and asp.net

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

|煩躁 2024-09-21 13:09:55

只需创建一个接受两个参数的 Web 方法:字节数组和文件名。

在该方法内部,只需使用文件名打开一个新文件的 FileStream,并将字节数组的内容写入该文件。一个过于简单的示例方法(没有 Web 服务修饰,因为您从未指定您正在使用的 Web 服务框架):

public void WriteBytesToFile(string filename, byte[] contents)
{
    using(FileStream fs = 
        new FileStream("C:\\UpdloadDir\\"+filename, FileMode.Create))
    {
        fs.Write(contents, 0, contents.Length);
    }
}

没有更多详细信息,这就是我能得到的最具体的信息。请记住,我们不是代码猴子。我们不会为您编写所有代码。如果您已经有一些代码,请将其发布,我们将尽力帮助您使其正常工作。

Just create a Web Method that accepts two parameters: a byte array and a filename.

Inside the method, simply open a FileStream to a new file with the filename and write the contents of the byte array to the file. An overly simple example method (without Web Service decorations since you never specify what Web Service framework you're using):

public void WriteBytesToFile(string filename, byte[] contents)
{
    using(FileStream fs = 
        new FileStream("C:\\UpdloadDir\\"+filename, FileMode.Create))
    {
        fs.Write(contents, 0, contents.Length);
    }
}

Without more details, that's about as specific as I can get. Remember, we're not code monkeys. We're not going to write all of your code for you. If you have some code already, post it and we'll try to help you to get it to work.

一向肩并 2024-09-21 13:09:55

如果您尝试发送电子邮件附件,请调查 System.Net.Mail。 Scott Guthrie 在他的博客上做了很好的介绍。

If you're trying to send email attachments, investigate System.Net.Mail. Scott Guthrie has a good introduction on his blog.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文