Java调用百度文心一言
时间: 2023-09-23 12:08:09 浏览: 271
可以通过发送 HTTP 请求来调用百度文心一言的 API。以下是一个使用 Java 发送 GET 请求的示例代码:
```java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class BaiduWenxinYiyan {
public static void main(String[] args) {
try {
// 构造请求 URL
String urlStr = "https://v1.hitokoto.cn/?encode=text";
URL url = new URL(urlStr);
// 创建连接
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
// 获取响应结果
BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
StringBuilder response = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
reader.close();
// 输出结果
System.out.println(response.toString());
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
这段代码会发送一个 GET 请求到 `https://v1.hitokoto.cn/?encode=text`,返回一个随机的句子。你可以根据自己的需求对返回结果进行处理和解析。
阅读全文