※ [本文转录自 C_and_CPP 看板 #1LtAZLEy ]
作者: sqrt1089 (李崩子) 看板: C_and_CPP
标题: [问题]client 端传照片给 web 端的相关问题
时间: Wed Aug 26 01:41:35 2015
开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
C#
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
应该是没....
问题(Question):
如题,client 端该怎么写 上传照片的相关code (已GOOGLE)
喂入的资料(Input):
Url跟 FilePath
预期的正确结果(Expected Output):
期许我上传照片能到我的server里面
错误结果(Wrong Output):
路径中有不合法的字符。
行 41:
byte[] btResponse =
oWebClient.UploadFile("http://XX.XX.XX.XX/Play/Handler1.ashx", "POST",
"@D:\temp\test.jpg");
程式码(Code):(请善用置底文网页, 记得排版)
我这是包在一个btn里面
相关程式码如下
WebClient oWebClient = new WebClient();
byte[] btResponse =
oWebClient.UploadFile("http://xx.xx.xx.xx/Play/Handler1.ashx", "POST",
"@D:\temp\test.jpg");
补充说明(Supplement):
我google
参考网址:https://msdn.microsoft.com/zh-tw/library/36s52zhs(v=VS.110).aspx
MSDN说明如下
address
类型:System.String
要接收档案之资源的 URI。 例如 ftp://localhost/samplefile.txt.
fileName
类型:System.String
要传送至资源的档案。 例如,"samplefile.txt"。
他的范例:
byte[] responseArray = myWebClient.UploadFile(uriString,fileName);
////////////
另外以下程式码是我的ashx端的,就是从客户端接收到照片,我做存盘的动作
foreach (string f in context.Request.Files.AllKeys)
{
HttpPostedFile file = context.Request.Files[f];
file.SaveAs("C:\\" + file.FileName);
}
不知道我用法是否正确= =
感谢大大观看,谢谢,感激不尽~