如何使用HttpURLConnection只发送一个请求

问题描述 投票:0回答:2

我是编码新手,这是我第一次发帖。

  1. 我使用以下代码向服务器发出请求。
  2. 我调用了一次该函数,但请求被发送了两次。
  3. 我从服务器返回的结果来自第二个请求结果。

我如何只向服务器发送一个请求

我存储所有runnables的类

public class ServerRunnables implements Runnable {
    Account currentAccount = Account.getInstance();

    private String result = "";
    private Context context;
    private Boolean callSuccess = true;

    int serviceCalled;
    String email;
    String password;
    String username;
    int coinChanges;

    String urlString = "http://10.0.2.2/MobileCoin/" + services[serviceCalled];
    String requiredParams;

    public ServerRunnables(Context context,
                           int serviceCalled,
                           String email,
                           String password,
                           String username,
                           int coinChanges) {

        this.context = context;
        this.serviceCalled = serviceCalled;
        this.email = email;
        this.password = password;
        this.username = username;
        this.coinChanges = coinChanges;
    }

    public void run() {
        urlString = "http://10.0.2.2/MobileCoin/" + services[serviceCalled];
        switch (serviceCalled) {
            case SERVICE_RANDOM_COIN:
                generateCoinServiceCalled();
                break;
            default:
                break;
        }
    }



    private void generateCoinServiceCalled() {

        requiredParams = "email=" + email;
        urlString = urlString + "?" + requiredParams;

        getMethodCalled(urlString);

        callSuccess = true;
        String message1 = "";

        if (result.equals(ServerConstants.RANDOM_COIN_EMPTY)) {
            callSuccess = false;
            message1 = "No Data Received";
        } else if (result.equals(ServerConstants.RANDOM_COIN_FAIL)) {
            callSuccess = false;
            message1 = "Data Does not Exist.";
        } else if (result.equals(ServerConstants.CONNECTION_ERROR)) {
            callSuccess = false;
            message1 = "Connection Error, Check Server";
        } else {
            message1 = "Coin Generated : " + Integer.parseInt(result);
        }

        coinChanges(currentAccount.getCoin() + Integer.parseInt(result));
    }

    private void getMethodCalled(String urlString) {
        result = "";

        try {
            URL url = new URL(urlString);

            HttpURLConnection hc = (HttpURLConnection) url.openConnection();
            int length = hc.getContentLength();

            InputStream input = url.openStream();
            byte[] binput = new byte[length];
            int readSize = input.read(binput);

            result = new String(binput).trim();
            input.close();
        } catch (Exception e) {
            Log.e("Net", "Error", e);
            result = ServerConstants.CONNECTION_ERROR;
        }

        Log.i(TAG, result);
    }
}

从这里开始发送请求

public class ServletsAPI {
    public static Context context;

    public static void randomCoinAPI(String email){
        ServerRunnables newRunnable =
                new ServerRunnables(context, ServerRunnables.SERVICE_RANDOM_COIN, email, null, null, 0);
        new Thread(newRunnable).start();
    }
}
java android get httpurlconnection java-threads
2个回答
0
投票

为什么不使用Retrofit轻松处理http请求?如果您与RxJava集成,则可以异步管理您的请求。


0
投票

我发现了这个bug:

InputStream input = url.openStream();

变成

InputStream input = hc.getInputStream();
© www.soinside.com 2019 - 2024. All rights reserved.