摘要: public class FtpWeb { string ftpRemotePath; string ftpUserID; string ftpPassword; string ftpURI; string ftpServerIP; /// /// 连接FTP /// ///... 阅读全文
posted @ 2017-10-30 21:41 天晴微笑 阅读(264) 评论(0) 推荐(0) 编辑
摘要: //将image转化为二进制 public byte[] GetByteImage(Image img) { byte[] bt = null; if (!img.Equals(null)) { using (MemoryStream mostream = n... 阅读全文
posted @ 2017-10-30 21:06 天晴微笑 阅读(514) 评论(0) 推荐(0) 编辑
摘要: string username = this.textBox1.Text; string password = this.textBox2.Text; string AA = HttpUtility.UrlEncode(username, Encoding.UTF8); string bb = HttpUtili... 阅读全文
posted @ 2017-10-30 20:28 天晴微笑 阅读(199) 评论(0) 推荐(0) 编辑
摘要: //byte[] 转图片 public static Bitmap BytesToBitmap(byte[] Bytes) { MemoryStream stream = null; try { stream = new MemoryStream(B... 阅读全文
posted @ 2017-10-30 20:07 天晴微笑 阅读(1339) 评论(0) 推荐(0) 编辑