标签: 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