Visual Basic 2010 Picturebox1.图像ftp上传
有人可以向我展示如何将 picturebox1 的图像上传到 FTP 连接的示例脚本吗?
can someone show me an example script of how I would upload picturebox1's Image to an FTP connection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这应该只用简单的 .NET 类来完成:
This ought to do it with just plain .NET classes:
听起来您的
PictureBox
的源是磁盘上的图像。如果不是,请找到一种方法将该图像保存到磁盘。使用此VB.NET FTP 客户端库 将该图像上传到您的 FTP 目标。它包含了所需的所有逻辑,并将节省您自己编写代码的时间。
它使用 System.Net.FtpWebRequest。
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
.就这么简单。
Easy as that.