com.sun.net.httpserver.HttpServer GET读取数据问题

时间:2011-08-02 10:59:48

标签: url attributes httpserver

我正在使用Http servet实现com.sun.net.httpserver.HttpServer。在我的客户端midlet我使用以下网址:     String url =“http:// localhost:22334 / name =”+ name; 当请求到达服务器时,收到的HttpExchange不会连接“name = john”数据? 我如何从网址读取数据? 谢谢, 的Eyal。

1 个答案:

答案 0 :(得分:1)

尝试使用

String url = "http://localhost:22334?name=" + name;

而不是你的斜杠:http://localhost:22334/name