使用 OkHttp 获取 Http 状态代码
2022-09-01 09:10:44
我正在使用OkHttp来获取某些网站的内容。
但是,我无法从响应中获取 Http 状态代码。
我的 Java 代码:
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://www.google.at")
.build();
Response httpResponse = client.newCall(request).execute();
String html = httpResponse.body().string();
此方法:
httpResponse.toString();
返回以下内容:
Response{protocol=http/1.1, code=200, message=OK, url=https://www.google.at}
有没有办法将状态代码作为整数获取,或者我是否需要一个正则表达式来从这个toString()-方法中过滤掉它?