标签: android upload webserver
如何从android mobile将数据上传到web服务器。请提供编码
答案 0 :(得分:1)
我认为这会编译:
HttpPut request = new HttpPut(<uri>); request.setEntity(new ByteArrayEntity(<your data>)); HttpResponse response = HttpClient.execute(httpPut);
您可能希望使用HttpPost而不是HttpPut,并在请求中指定内容类型。