📜  Spring Boot 中的 http 请求 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:13.345000             🧑  作者: Mango

代码示例1
URL url = new URL("http://example-url");
        HttpURLConnection con = (HttpURLConnection) url.openConnection();
        con.setRequestMethod("GET");

return con.getResponseMessage().toString()