Java を Baidu AI インターフェイスに接続する際の一般的な問題と解決策
要約: 人工知能テクノロジーの急速な発展により、Baidu AI インターフェイスは多くの人にとって最初の選択肢になりました。 Java 開発者向けツールの 1 つ。ただし、Baidu AI インターフェイスに接続する過程で、いくつかの問題が発生することがよくあります。この記事では、いくつかの一般的な問題を紹介し、対応する解決策を示し、参考用の Java コード例をいくつか示します。
import java.io.*; import java.net.HttpURLConnection; import java.net.URL; public class AIAPIDemo { private static final String ACCESS_TOKEN = "YOUR_ACCESS_TOKEN"; private static final String API_URL = "https://aip.baidubce.com/rpc/2.0/nlp/v1/sentiment_classify"; public static void main(String[] args) { try { URL url = new URL(API_URL + "?access_token=" + ACCESS_TOKEN); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setRequestMethod("POST"); connection.setDoOutput(true); connection.setRequestProperty("Content-Type", "application/json"); String requestBody = "{"text":"这是一段测试文本"}"; OutputStream outputStream = connection.getOutputStream(); outputStream.write(requestBody.getBytes()); outputStream.close(); int responseCode = connection.getResponseCode(); BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(responseCode == 200 ? connection.getInputStream() : connection.getErrorStream())); String line; StringBuilder response = new StringBuilder(); while ((line = bufferedReader.readLine()) != null) { response.append(line); } bufferedReader.close(); System.out.println("Response: " + response.toString()); } catch (Exception e) { e.printStackTrace(); } } }
上記のコードでは、最初に Baidu AI インターフェイスの URL を指定し、同時に access_token をアタッチします。 URL内の認証情報として。次に、HttpURLConnection 接続を確立し、関連するリクエスト ヘッダーとリクエスト本文を設定します。最後に、応答内容を取得して出力します。
import java.net.HttpURLConnection; import java.net.URL; public class AIAPITimeoutDemo { private static final String ACCESS_TOKEN = "YOUR_ACCESS_TOKEN"; private static final String API_URL = "https://aip.baidubce.com/rpc/2.0/nlp/v1/sentiment_classify"; public static void main(String[] args) { try { URL url = new URL(API_URL + "?access_token=" + ACCESS_TOKEN); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setConnectTimeout(5000); connection.setReadTimeout(10000); // 其他代码... } catch (Exception e) { e.printStackTrace(); } } }
上記のコードでは、setConnectTimeout
メソッドを使用して接続タイムアウトを 5 秒に設定し、setReadTimeout
接続タイムアウトを 5 秒に設定するメソッドで、読み取りタイムアウトは 10 秒です。
import com.google.gson.Gson; public class AIAPIJsonDemo { public static void main(String[] args) { String response = "{"result":{"positive_prob":0.898,"confidence":0.9,"negative_prob":0.102,"sentiment":0}}"; Gson gson = new Gson(); AIResult aiResult = gson.fromJson(response, AIResult.class); System.out.println("Sentiment: " + aiResult.result.sentiment); } } class AIResult { Result result; } class Result { double positive_prob; double confidence; double negative_prob; int sentiment; }
上記のコードでは、最初にクラス AIResult
を定義して、 API の戻り結果 フィールド。次に、Gson の
fromJson メソッドを使用して、JSON を
AIResult オブジェクトに解析し、
sentiment フィールドの値を取得します。
以上がJava を Baidu AI インターフェイスに接続する際の一般的な問題と解決策の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。