如何使用数组数据执行jsoup请求? Jsoup发布请求与数组数据并从PHP服务器获取json

I get json data with postman. Screenshot is the following. But I could't get json data with jsoup. How can I post a request with array data by using jsoup?

$link = mysqli_connect("localhost", "root", "pwd", "blockchain");
$cur_key ="";
$cur_key = $_POST['cur_key'];
// Check connection
if($link === false){
    die("ERROR: Could not connect. " . mysqli_connect_error());
}

$sql = "SELECT * FROM crypto where id IN('".implode("','",$cur_key)."')";
if($result = mysqli_query($link, $sql)){
    $encode = array();

    while($row = mysqli_fetch_assoc($result)) {
        $encode[] = $row;
    }

    echo json_encode($encode);

} else{
    echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
}
?>

postman result

My java code is like the following.

    try {

           Document doc = Jsoup.connect(_url).header("Content-Type","application/x-www-form-urlencoded;charset=UTF-8")
                    .data("cur_key[]", "bitcoin")
                    .data("cur_key[]", "ripple")
                    .method(Connection.Method.POST)
                    .header("Content-Type", "application/x-www-form-urlencoded")
                    .ignoreContentType(true)
                    .timeout(0).get();
        } catch (IOException e) {

            e.printStackTrace();

        }