相应服务器端代码的Android代码

时间:2013-07-26 12:54:03

标签: android .net

我得到了一个用于保存远程发送到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();

} 

1 个答案:

答案 0 :(得分:0)

Here是一个库,它提供了您从Android设备中寻找的有用文件上传功能。

See this link(也可能对您的要求有所帮助)。