java调用chatgpt接口
时间: 2023-09-21 10:03:16 浏览: 109
以下是Java调用chatgpt接口的示例代码:
```java
import java.net.*;
import java.io.*;
public class ChatGptClient {
public static void main(String[] args) {
try {
String url = "http://localhost:5000/chat"; // chatgpt接口地址
URL obj = new URL(url);
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
// 设置请求方法为POST
con.setRequestMethod("POST");
// 设置请求头
con.setRequestProperty("Content-Type", "application/json");
con.setRequestProperty("Accept", "application/json");
// 构造请求参数json字符串
String params = "{\"context\": \"Hello\", \"top_p\": 0.5, \"top_k\": 5}";
// 发送POST请求
con.setDoOutput(true);
OutputStream os = con.getOutputStream();
os.write(params.getBytes());
os.flush();
os.close();
// 获取响应结果
int responseCode = con.getResponseCode();
System.out.println("Response Code : " + responseCode);
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
// 输出响应结果
System.out.println(response.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
在上述代码中,我们使用Java中的HttpURLConnection类来发送POST请求,设置请求头信息和请求参数,获取响应结果并输出。其中,请求参数为一个json字符串,包含对话上下文、top_p和top_k等信息。根据实际情况,你需要修改接口地址、请求参数和请求头信息。
阅读全文