gpt4 book ai didi

java - 在服务器端接收值( reslet java )从客户端发送( php )

转载 作者:行者123 更新时间:2023-12-01 11:32:53 25 4
gpt4 key购买 nike

PHP 代码

$name = $_REQUEST[ 'name' ];

// Create the client object.
$url = 'http://localhost:8182/hello?'.$name;
$ch = curl_init( $url );

// Set Curl options
curl_setopt ( $ch, CURLOPT_URL, $url );
curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true );

// Make the request
echo $response = curl_exec( $ch ); // Just getting "hello, world" and not the name.

?>

我的 Java 代码。

@Get
public String present( String name ){
String name = getQuery().getValues("name");
return "hello, world"+name;
}

我正在做的是,尝试从客户端(即 php)发送名称到服务器端 java(reSTLet)。谁能指导我如何完成这项任务?

最佳答案

编辑此行

// Create the client object.
$url = 'http://localhost:8182/hello?name='.$name;

关于java - 在服务器端接收值( reslet java )从客户端发送( php ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30274287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com