0
我想知道是否有任何方法從http response.body()
中提取Json字符串。在我的response.body()
裏面我有:{"er":"manualBlock"}
我想處理這個字符串而不必使用split方法。從http響應獲取Json字符串()
編輯 我有這個至今:
String[] parts = response.body().string().split("-");
result = parts[0];
if (result != null && result.equals("{\"er\":\"manualBlock\"}")) {
throw new BlockeduserException("User blocked", null);
}
你使用什麼HTTP客戶端? –
嗨,謝謝你的回答,我正在使用Retrofit。 –
另外,你可以粘貼你目前的代碼嗎? –