如果你使用 async-http 作为你的 http 客户端 click-here 那么你可以使用下面的方法[如果你选择 async-http 你可以使用这个方法]
此方法不仅可以上传图片,还可以用于对服务器进行正常的 post 调用。
YourFragment.class[这个类是你调用http请求的]
public class YourFragment extends CommanAbstract
{
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View v = inflater.inflate(R.layout.your_layout, container, false);
ButterKnife.inject(this, v);
return v;
}
private void linkCall() {
// TODO Auto-generated method stub
RequestParams params = new RequestParams();
params.put("params1", "value1");
params.put("params2", "value2");
//note that "image" tag will be the tag which accepts the file to the server
params.put("image", new File("your image path from gallery or camera"));
parse(params, 1, your link here, true);
}
@Override
public void parseresult(String response, boolean success, int value) {
// TODO Auto-generated method stub
switch (value) {
case 1:
//here you can parse the link response
break;
}
}
@Override
public void error(String response) {
// TODO Auto-generated method stub
//error will come here
}
}
CommanAbstract 类[在您有 http 请求的任何类中扩展此类]
public abstract class CommanAbstract extends Fragment{
private static final String Url = "your link head here";
public abstract void parseresult(String response, boolean success, int value);
public abstract void error(String response);
public void parse(RequestParams params, final int value, String link,
boolean progrss) {
// TODO Auto-generated method
AsyncHttpClient client = new AsyncHttpClient();
GlobalFunctions.postApiCall(getActivity(), link, params, client,
new HttpResponseHandler() {
@Override
public void handle(String response, boolean success) {
// TODO Auto-generated method stub
if (success) {
parseresult(response, true, value);
} else {
error(response);
toast("Connection error");
}
}
});
}
}
GlobalFunctions类[该类调用http请求]
public class GlobalFunctions {
// static ProgressDialog progress;
public interface HttpResponseHandler {
void handle(String response,boolean failre);
}
public static void postApiCall(final Context context, final String url,
RequestParams params, AsyncHttpClient httpClient,
final HttpResponseHandler handler) {
httpClient.post(url, params, new AsyncHttpResponseHandler() {
@Override
public void onFailure(Throwable arg0, String failureResponse) {
// TODO Auto-generated method stub
super.onFailure(arg0, failureResponse);
System.out.println("fail" + failureResponse + "url is" + url);
handler.handle(failureResponse,false);
// errorToast(context);
}
@Override
public void onSuccess(String response) {
handler.handle(response,true);
}
});
}
}