【问题标题】:Retrofit2 doesn't send POST dataRetrofit2 不发送 POST 数据
【发布时间】:2019-06-23 16:37:57
【问题描述】:

对不起,如果我的英语不好!我使用改造 2 来接收依赖于 POST 数据的数据。我从服务器接收数据,但发送数据时出现问题。我曾尝试使用不同的注释(@Field、@Body 与 Object、@Body 与 HashMap 数据),但它们都不起作用。 这是我的 Java 代码:

build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.test.retrofitpostdatagetjson"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'

    implementation 'com.google.code.gson:gson:2.8.4'

    implementation 'com.squareup.retrofit2:retrofit:2.5.0'

    implementation 'com.squareup.retrofit2:converter-gson:2.5.0'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

APIClient.java

import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;

public class APIClient {
    private static final String BASE_URL = "https://myurl.ru/";
    private static Retrofit retrofit;

    public static Retrofit getClient() {
        if (retrofit == null) {
            retrofit = new Retrofit.Builder()
                    .baseUrl(BASE_URL)
                    .addConverterFactory(GsonConverterFactory.create())
                    .build();
        }
        return retrofit;
    }
}

ApiUtils.java

public class ApiUtils {

    private ApiUtils() {}

    public static APIInterface getAPIService() {

        return APIClient.getClient().create(APIInterface.class);
    }
}

APIInterface.java

import com.test.retrofitpostdatagetjson.model.DataResponse;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.POST;

public interface APIInterface {
    @POST("test_json_with_post")
    Call<DataResponse> createData(@Body DataResponse data);

}

DataResponse.java

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;

public class DataResponse implements Serializable {

    @SerializedName("numb")
    @Expose
    private int numb;
    @SerializedName("name")
    @Expose
    private String name;

    @SerializedName("emp")
    @Expose
    public String value;
    @SerializedName("status")
    @Expose
    public String status;

    public DataResponse(int numb, String name) {
        this.numb = numb;
        this.name = name;
    }

    public int getNumb() {
        return numb;
    }

    public String getName() {
        return name;
    }

    public String getValue() {
        return value;
    }

    public String getStatus() {
        return status;
    }

    public void setNumb(int numb) {
        this.numb = numb;
    }

    public void setName(String name) {
        this.name = name;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    @Override
    public String toString() {
        return "DataResponse{" +
                "numb=" + numb +
                ", name='" + name + '\'' +
                ", value='" + value + '\'' +
                ", status='" + status + '\'' +
                '}';
    }
}

MainActivity.java

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;
import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
import com.test.retrofitpostdatagetjson.api.APIInterface;
import com.test.retrofitpostdatagetjson.model.DataResponse;
import static com.test.retrofitpostdatagetjson.api.ApiUtils.getAPIService;

public class MainActivity extends AppCompatActivity {

    APIInterface apiInterface;
    int numb = 0;
    String name = "test row";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        apiInterface = getAPIService();

        if (CommonMethod.isNetworkAvailable(MainActivity.this))
            sendPost(numb, name);
        else
            CommonMethod.showAlert("Internet Connectivity Failure", MainActivity.this);

    }

    private void sendPost(int numb, String name) {

        final DataResponse data = new DataResponse(numb, name);
        Log.w("retroTest", "sent    -->  " + data.toString());
        Call<DataResponse> call1 = apiInterface.createData(data);
        call1.enqueue(new Callback<DataResponse>() {
            @Override
            public void onResponse(Call<DataResponse> call, Response<DataResponse> response) {
                DataResponse dataResponse = response.body();
                if (dataResponse != null) {
                    Log.w("retroTest", "received    -->  " + dataResponse.toString());
                }
            }

            @Override
            public void onFailure(Call<DataResponse> call, Throwable t) {
                Toast.makeText(getApplicationContext(), "onFailure called ", Toast.LENGTH_SHORT).show();
                call.cancel();
            }
        });
    }

}

这是我的日志:

W/retroTest: sent  -->  DataResponse{numb=0, name='test row', value='null', status='null'}
W/retroTest: received  -->  DataResponse{numb=0, name='null', value='null', status='2'}

我在服务器上的 PHP 文件:

<?php
header("Content-type: application/json; charset=utf-8");

$inputJSON = file_get_contents('php://input');
$input = json_decode($inputJSON, TRUE);

$numb = $input['numb'];
$name = $input['name'];

if (isset($_POST['numb']) && !empty($_POST['numb'])) {   
  $numb = $_POST['numb']; }
if (isset($_POST['name']) && !empty($_POST['name'])) {   
  $name = $_POST['name']; }

if (!$numb) {
$json = json_encode( array(
"emp" => $name,
"status" => "2"));
} else {
$json = json_encode( array(
"emp" => "nothing",
"status" => "2"));
}

$myfile = fopen("testfile.txt", "w");
fwrite($myfile, $inputJSON);
fwrite($myfile, "\n");
fwrite($myfile, $numb);
fwrite($myfile, "\n");
fwrite($myfile, $name);
fclose($myfile);


echo $json;
?>

文件 testfile.txt 也是空的,但是当我尝试通过 Postman 发送 POST 时,一切正常!

【问题讨论】:

  • postman中的url和“/test_json_with_post”一样吗?另外,我没有看到为“sent -->”日志编写的代码
  • uneq95,是的,邮递员中的网址是相同的,我在我的应用程序中也从它接收数据,问题仅在于从应用程序发送数据。关于“发送->”日志-抱歉,在将 MainActivity 的代码粘贴到我的问题中后,我已经更改了这些行。现在修好了。
  • Prim,关于那个问题的答案对我没有帮助,也许是我的代码中出现问题的原因..

标签: java android post retrofit retrofit2


【解决方案1】:

我找到了我的问题的原因.. 它是如此简单.. 都是关于 url 末尾的斜线。 我使用 index.php,所以当我将 POST 发送到我的 url 地址时,我应该用斜杠结束它。

改为:

 @POST("test_json_with_post")

我应该这样写:

 @POST("test_json_with_post/")

在我的 APIInterface.java 中。一切正常!

希望有一天能帮助到某人)

【讨论】:

    【解决方案2】:

    您是否尝试过将正文作为 JsonObject 发送? 总是为我工作。如果不是,那么我会假设后端端口有问题

    类似这样的:

    public interface APIInterface {
        @POST("test_json_with_post")
        Call<DataResponse> createData(@Body JsonObject data);
    
    }
    
    JsonObject obj = new Gson().toJson(yourDataObject);
    ...
    apiInterface.createData(obj);
    
    

    【讨论】:

    • 我不能完全按照你写的方式做,因为 Android Studio 告诉我“不兼容的类型。必需:com.google.gson.JsonObject 找到:java.lang.String”。我这样做: JSONObject obj = new JSONObject(new Gson().toJson(data));但它仍然没有解决我的问题
    • @Maria JSONObject 和 JsonObject 是两个不同的对象。首先是默认的 java 库实现,其次是 Gson 库实现。您可能应该使用第二个。检查您的导入并摆脱 JSONObject :)
    • Yury Dombaev,我理解,JSONObject 和 JsonObject 是两个不同的对象。正如您在我的评论中看到的那样,我尝试使用 com.google.gson.JsonObject 并收到错误(不兼容的类型),因为 toJson(Object src) 方法返回 String.. 我不明白要正确修复它)
    • @Maria 哦,对不起,好像我给了你错误的方法。你可以试试这个吗? JsonElement jsonElement = gson.toJsonTree(javaObject); JsonObject jsonObject = (JsonObject) jsonElement;
    猜你喜欢
    • 1970-01-01
    • 2013-08-24
    • 1970-01-01
    • 1970-01-01
    • 2020-02-01
    • 2012-02-05
    • 2012-09-02
    • 2011-02-21
    • 2013-06-09
    相关资源
    最近更新 更多