我得到了一个用于保存远程发送到ASP.NET服务器的图像的代码。我想得到相应代码的android部分。链接(http://reecon.wordpress.com/2010/04/25/uploading-files-to-http-server-using-post-android-sdk/)中的代码是否有效?我得到的代码如下所述: -
[网络方法]
public string SaveImage()
{
HttpPostedFile file =
HttpContext.Current.Request.Files["recFile"];
string targetFilePath = "c:\\" + file.FileName;
file.SaveAs(targetFilePath);
return file.FileName.ToString();
}