-
最近由于项目需要实现c#提交文字及数据至服务器,因此研究了一下c# php数据传送;
下面用一个示例来演示,c# post文字+图片 ,php端接收;
post提交数据核心代码(post数据提交)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Drawing;
using System.Web;
using System.Net;
namespace postpic
{
class
postClass
{
/// <summary>
/// 向服务器post文字和图片
/// </summary>
///<param name="url">url
///<param name="userName">用户名
///<param name="userPwd">密码
///<param name="jpegPath">头像地址
/// <returns>返回服务器返回值</returns>
public
string post(string url,string userName, string userPwd, string jpegPath)
{
//将图片转化为byte[]再转化为string
string array = Convert.ToBase64String(imageToByteArray(jpegPath));
//构造post提交字段
string para = name=+userName+&pwd=+userPwd+&head=+HttpUtility.UrlEncode(array);
#region HttpWebRequest写法
HttpWebRequest httpWeb = (HttpWebRequest)WebRequest.Create(url);
httpWeb.Timeout =
20000
;
httpWeb.Method = POST;
httpWeb.ContentType = application/x-www-form-urlencoded;
byte
[] bytePara = Encoding.ASCII.GetBytes(para);
using (Stream reqStream = httpWeb.GetRequestStream())
{
//提交数据
reqStream.Write(bytePara,
0
, para.Length);
}
//获取服务器返回值
HttpWebResponse httpWebResponse = (HttpWebResponse)httpWeb.GetResponse();
Stream stream = httpWebResponse.GetResponseStream();
StreamReader streamReader =
new
StreamReader(stream, Encoding.GetEncoding(utf-
8
));
//获得返回值
string result = streamReader.ReadToEnd();
stream.Close();
#endregion
//将服务器返回值返回
return
result;
}
/// <summary>
/// 图片转为Byte字节数组
/// </summary>
///<param name="FilePath">路径
/// <returns>字节数组</returns>
private
byte
[] imageToByteArray(string FilePath)
{
using (MemoryStream ms =
new
MemoryStream())
{
using (Image imageIn = Image.FromFile(FilePath))
{
using (Bitmap bmp =
new
Bitmap(imageIn))
{
bmp.Save(ms, imageIn.RawFormat);
}
}
return
ms.ToArray();
}
}
}
}
一、c#客户端
为了方便说明,我直接简化了,一个提交按钮就好了。
二、需要提交的图片
该图片存放在俺的E盘根目录下面~~~~~(贴吧随便抓的一张图片)
path = @E:head.jpg;
三、php服务端
接收图片后存放至,path = @C:Loginlog;
附录:
c#端代码:
c#界面简单代码~~~~~(该代码可略过~~~~~)
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace postpic
{
public
partial
class
postFrom : Form
{
public
postFrom()
{
InitializeComponent();
}
/// <summary>
/// 提交按钮,提交post数据
/// </summary>
///<param name="sender">
///<param name="e">
private
void
btnpost_Click(object sender, EventArgs e)
{
//postClass为数据提交类
postClass ps =
new
postClass();
string url =
@http
:
//localhost/login.php;
string name = DooZn;
string pwd = a12345;
string jpegPath =
@E
:head.jpg;
//提交数据
string value = ps.post(url,name,pwd,jpegPath);
//value为服务器返回值
if
(value.Contains(
1
))
{
MessageBox.Show(登陆成功.);
}
else
if
(value.Contains(
0
))
{
MessageBox.Show(登陆失败.);
}
else
{
MessageBox.Show(未知错误.);
}
}
}
}
相关文章
- 07-12基于PySimpleGUI实现图片转文字并翻译至剪切板
- 07-12记一次本地上传图片无错误,代码上传至windos服务器后无法上传图片
- 07-12c# 对接微信公众号JSSDK使用wx.uploadImage 上传图片,后台从微信服务器上下载的图片有问题损坏的解决办法
- 07-12C#图片上传服务器缩放存储功能
- 07-12【C#】HTTP post 上传图片及参数
- 07-12C#图片上写文字
- 07-12C# 保存网络图片至本地项目中
- 07-12C# Qrcode生成二维码支持中文,带图片,带文字 2015-01-22 15:11 616人阅读 评论(1) 收藏
- 07-12c# 模拟POST上传文件到服务器
- 07-12C#:图片加上文字水印(书法印章生成)