NoHttpResponseException: The server corporbank.dccnet.com failed to respond
4795 단어 exception
서버 에 응답 이 없습니다.
jdk httpserver 의 일부 업무 논 리 를 사용 하여 이상 을 초래 하고 클 라 이언 트 데이터 에 되 돌아 오지 않 아 이상 을 초래 합 니 다.
package com.cyyun.xc.command.util;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.InetSocketAddress;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.lang3.ArrayUtils;
import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Logger;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import com.sun.net.httpserver.HttpServer;
import com.sun.net.httpserver.spi.HttpServerProvider;
@SuppressWarnings("all")
public abstract class ScreenshotHandler {
private static Logger log = Logger.getLogger(ScreenshotHandler.class);
private int port = 6666;
private String path = "test";
public ScreenshotHandler() {
}
public ScreenshotHandler(int port, String path) {
this.port = port;
this.path = path;
}
// ,
public void httpserverService() throws IOException {
HttpServerProvider provider = HttpServerProvider.provider();
HttpServer httpserver = provider.createHttpServer(
new InetSocketAddress(port), 100);// 6666, 100
httpserver.createContext(path, new MyHttpHandler());
httpserver.setExecutor(null);
httpserver.start();
// System.out.println("server started");
log.info("server started");
}
// Http
public class MyHttpHandler implements HttpHandler {
public void handle(HttpExchange httpExchange) throws IOException {
// String responseMsg = "{result:success}"; //
log.error("MyHttpHandler。。。。。。。。。。。。。。。。。。。。。。。");
String responseMsg = "";
InputStream in = null;
BufferedReader reader = null;
OutputStream out = null;
try {
in = httpExchange.getRequestBody(); //
reader = new BufferedReader(new InputStreamReader(in));
String temp = null;
StringBuilder params = new StringBuilder();
while ((temp = reader.readLine()) != null) {
log.info("client request:" + temp);
params.append(temp);
}
Map<String, String> map = convertMap(params.toString());
responseMsg = callback(map);
} catch (Exception e) {
log.error(e.getMessage(), e);
} finally {
httpExchange.sendResponseHeaders(200, responseMsg.length()); //
out = httpExchange.getResponseBody(); //
out.write(responseMsg.getBytes());
out.flush();
if (in != null) {
in.close();
}
if (reader != null) {
reader.close();
}
if (out != null) {
out.close();
}
httpExchange.close();
}
}
}
/**
* , "{result:success}"
*
* @param map
* @return
*/
public abstract String callback(Map<String, String> map);
public static Map<String, String> convertMap(String str) {
Map<String, String> map = new HashMap<String, String>();
if (StringUtils.isEmpty(str)) {
return map;
}
String[] names = str.split("\\&");
if (ArrayUtils.isEmpty(names)) {
return map;
}
try {
for (String name : names) {
if (StringUtils.isNotEmpty(name)) {
String[] vals = name.split("\\=");
if (ArrayUtils.isNotEmpty(vals)) {
if (vals.length == 1) {
map.put(vals[0], null);
} else {
map.put(vals[0], vals[1]);
}
}
}
}
} catch (Exception e) {
log.error(e.getMessage(), e);
}
return map;
}
}
public static String getConfigValue(String key)
{
Locale locale = Locale.getDefault();
ResourceBundle localResource = ResourceBundle.getBundle("configParameter", locale);
return localResource.getString(key);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Exception Class에서 에러 코드 해석 ~초기초편~직장에서 C# 프로젝트가 내뿜는 오류 코드를 구문 분석하고 오류의 위치를 확인하기 위해 Exception class를 활용할 수 있었습니다. 지금까지 Exception Class 에 대해서 별로 파악할 수 없었기 때...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.