私は PC とマシンの間の通信を確立するソフトウェアを持っています。これは Java 1.6 で動作していましたが、1.7 では動作しなくなりました。IOException --> 「無効な Http 応答」は、getInputStream() メソッドが呼び出されるとすぐに得られるものです。メソッドが改善され、はるかに敏感になったようです。つまり、Java 1.6 では responseCode= -1 の結果が特にチェックされていません。
Wireshark を使用して、両方のバージョン (1.6 と 1.7) が同じイーサネット フレームを送受信したかどうかを確認しました。
これは PC (クライアント) 側からしか解決できません。つまり、サーバー コードを編集または変更することはできません。
バージョンと互換性のあるコードを作成するために何か新しいものを変更または実装する方法についての助けをいただければ幸いです。1.7 私は元プログラマーではないので... ありがとう
順序:
- get が呼び出されます
- return readResponse(..) が呼び出されます
- getInputStream() --> IOException
- catch (Exception e) {System.out.println("get リクエストの送信エラー" + getURL() + " string: " + requestString); Error.ethernetException を返します。//TODO
ここでコンソール出力:
-1 get リクエストの送信中にエラーが発生しました...文字列: *APPLETCOMMINFO_ strResponse: イーサネット例外
そしてコード:
private String get(String requestString)/* throws ComunicationException*/ {
HttpURLConnection httpURLConnection = null;
OutputStream out = null;
try {
String encodedRequestString = URLEncoder.encode(requestString, "iso-8859-1");
String path = getURL().getPath();
if (!path.endsWith("/")) path = path + "/";
path = path + encodedRequestString;
URL fullURL = new URL(getURL().getProtocol(), getURL().getHost(), getURL().getPort(), path);
httpURLConnection = (HttpURLConnection)fullURL.openConnection();
httpURLConnection.setRequestMethod("GET");
httpURLConnection.setDoOutput(false);
httpURLConnection.setDoInput(true);
httpURLConnection.setUseCaches(false);
// Set timeout at 5s
httpURLConnection.setConnectTimeout(m_nTimeOut);
httpURLConnection.setReadTimeout(m_nTimeOut);
return readResponse(httpURLConnection);
} catch (Exception e) {
System.out.println("error sending get request " + getURL() + " string: " + requestString);
return Error.ethernetException; //TODO
} finally {
if (out != null) {
try {
out.close();
} catch (Throwable t) {
System.out.println("GET: out.close(), Class: Client");
}
}
if (httpURLConnection != null) {
try {
httpURLConnection.disconnect();
} catch (Throwable t) {
System.out.println("GET: httpURLConnection.disconnect(), Class: Client");
}
}
}
}
/**
* Reads the response from the server into a string.
* The content length header must be set!
* @param connection
* @return
* @throws IOException
*/
private String readResponse(HttpURLConnection connection) throws IOException {
if (connection == null) throw new IllegalStateException("connection must not be null");
connection.connect();
int status = connection.getResponseCode();
System.out.println(status);
// InputStream aaa = connection.getInputStream();
Reader reader = null;
try {
reader = new InputStreamReader(connection.getInputStream(), "iso-8859-1");
int readBufferSize = connection.getContentLength();
if (readBufferSize < 0) {
// use default buffer size
readBufferSize = DEFAULT_READ_BUFFER_SIZE;
}
// if content length was set, read will be done in a single
// iteration because buffer fits...
StringBuffer response = new StringBuffer();
char[] readBuffer = new char[readBufferSize];
int len;
while ((len = reader.read(readBuffer)) > 0) {
response.append(new String(readBuffer, 0, len));
}
return response.toString();
} catch (IOException ioe) {
throw ioe;
} finally {
if (reader != null) {
try {
reader.close();
} catch (Throwable t) {
System.out.println("readResponse: reader.close(), Class: Client");
//log
}
}
}
}
/**
*
* @return the url
*/
public URL getURL() {
return url;
}
}