图灵机器人

本文提供了一个使用Java语言调用图灵机器人API的简单示例代码。该示例展示了如何通过发送HTTP请求来获取图灵机器人的回复,并处理返回的数据。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

package com.xxx.work;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;
import java.util.Scanner;

public class Turing {
    
    /**
     * 说明:图灵机器人库从网上就可以找到
     */
    private static void testTuring(String str){
        final String key = "e7a1447ed2182d57758ca845e5a0f36e";
        String info = "";
        try {
            info = URLEncoder.encode(str, "utf-8");
            String spec = "http://www.tuling123.com/openapi/api?key="+key+"&info="+info;
            URL url = new URL(spec);
            HttpURLConnection connection = (HttpURLConnection)url.openConnection();
            connection.connect();
            BufferedReader br = new BufferedReader(new InputStreamReader(connection.getInputStream(),"utf-8"));
            String line = "";
            StringBuilder sb = new StringBuilder();
            if((line=br.readLine())!=null){
                sb.append(line);
            }
            br.close();
            connection.disconnect();
            System.out.println(sb);
        } catch (IOException e) {
            System.err.println("异常的信息:"+e.getMessage());
            e.printStackTrace();
        }
    }
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        testTuring(str);
    }
}

转载于:https://www.cnblogs.com/laoxiong/p/6978117.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值