Visual Basic 2010 Picturebox1.图像ftp上传

发布于 2024-09-18 03:48:10 字数 51 浏览 5 评论 0原文

有人可以向我展示如何将 picturebox1 的图像上传到 FTP 连接的示例脚本吗?

can someone show me an example script of how I would upload picturebox1's Image to an FTP connection?

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

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

发布评论

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

评论(3

水水月牙 2024-09-25 03:48:10

这应该只用简单的 .NET 类来完成:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Using ms As New System.IO.MemoryStream
        PictureBox1.Image.Save(ms, System.Drawing.Imaging.ImageFormat.Png)
        Using wc As New System.Net.WebClient
            wc.UploadData("ftp://foo.com/bar/mumble.png", ms.ToArray())
        End Using
    End Using
End Sub

This ought to do it with just plain .NET classes:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Using ms As New System.IO.MemoryStream
        PictureBox1.Image.Save(ms, System.Drawing.Imaging.ImageFormat.Png)
        Using wc As New System.Net.WebClient
            wc.UploadData("ftp://foo.com/bar/mumble.png", ms.ToArray())
        End Using
    End Using
End Sub
摘星┃星的人 2024-09-25 03:48:10

听起来您的 PictureBox 的源是磁盘上的图像。如果不是,请找到一种方法将该图像保存到磁盘。

使用此VB.NET FTP 客户端库 将该图像上传到您的 FTP 目标。它包含了所需的所有逻辑,并将节省您自己编写代码的时间。

它使用 System.Net.FtpWebRequest。

myFtp.Upload("C:\myimage.png", "/pub/someImage.png")

Sounds like your PictureBox has a source that's an image on disk. If it's not, find a way to save that image to disk.

Use this VB.NET FTP client library to upload that image to your FTP destination. It wraps all the logic needed, and will save you the time of writing the code yourself.

It uses System.Net.FtpWebRequest.

myFtp.Upload("C:\myimage.png", "/pub/someImage.png")
不念旧人 2024-09-25 03:48:10
                Dim username = "USERNAME"
                Dim password = "PASSWORD"
                Dim hostname = "http://www.wherethefilewillappear.com/directory1/"
                Dim server = "ftp://ftp.yoursite.com/"
                My.Computer.Network.UploadFile("C:\text.txt", server &"/text.txt", username, password)

就这么简单。

                Dim username = "USERNAME"
                Dim password = "PASSWORD"
                Dim hostname = "http://www.wherethefilewillappear.com/directory1/"
                Dim server = "ftp://ftp.yoursite.com/"
                My.Computer.Network.UploadFile("C:\text.txt", server &"/text.txt", username, password)

Easy as that.

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