当前位置: 代码迷 >> Java Web开发 >> Socket接收https请求时如何解析参数
  详细解决方案

Socket接收https请求时如何解析参数

热度:296   发布时间:2016-04-16 21:51:54.0
Socket接收https请求时怎么解析参数?
ServerSocket serverSocket = null;
int port = 8888;
try {
serverSocket = new ServerSocket(port, 1,
InetAddress.getByName("127.0.0.1"));
} catch (IOException e) {
e.printStackTrace();
System.exit(1);
}
while (!shutdown) {
Socket socket = null;
InputStream input = null;
OutputStream output = null;
try {
/**
 * 循环到此停止,在端口8888接收到一个HTTP请求才会继续
 */
socket = serverSocket.accept();
input = socket.getInputStream();
output = socket.getOutputStream();
} catch (Exception e) {
e.printStackTrace();
continue;
}
}

另外,不知道别人传参用的什么字符集,怎么避免乱码
------解决思路----------------------
https是有协议的,没这么简单的,你这什么都没有,怎么玩

  相关解决方案