为什么我不能在“RequestBody.create(mediaType,String)”中使用String变量?

时间:2017-09-07 11:23:06

标签: java rest okhttp

我有:

RequestBody body = RequestBody.create(mediaType, "12345");

......而且工作正常。

但如果我使用它,它就不起作用了:

String str = "12345";
RequestBody body = RequestBody.create(mediaType, str);

String str = new String ("12345");

为什么?....

About this method

0 个答案:

没有答案