我目前正在用Java开发一个小程序。 该计划的主要目标是将照片发送到微软认知服务(https://www.microsoft.com/cognitive-services/),然后获取返回的信息。
它适用于我在api文档中找到的代码片段,但仅适用于我的Windows机器。
有问题,最终的程序必须在Raspberry Pi 2上工作。当我将.jar文件放在树莓上时,它编译(写出我的System.out.println)但是发给我一个 java .net.SocketException 异常:
mai 26, 2016 1:59:58 PM org.apache.http.impl.execchain.RetryExec execute
INFOS: I/O exception (java.net.SocketException) caught when processing request to {s}->https://api.projectoxford.ai:443: Connection reset
mai 26, 2016 1:59:58 PM org.apache.http.impl.execchain.RetryExec execute
INFOS: Retrying request to {s}->https://api.projectoxford.ai:443
mai 26, 2016 1:59:59 PM org.apache.http.impl.execchain.RetryExec execute
INFOS: I/O exception (java.net.SocketException) caught when processing request to {s}->https://api.projectoxford.ai:443: Connection reset
mai 26, 2016 1:59:59 PM org.apache.http.impl.execchain.RetryExec execute
INFOS: Retrying request to {s}->https://api.projectoxford.ai:443
mai 26, 2016 2:00:00 PM org.apache.http.impl.execchain.RetryExec execute
INFOS: I/O exception (java.net.SocketException) caught when processing request to {s}->https://api.projectoxford.ai:443: Connection reset
mai 26, 2016 2:00:00 PM org.apache.http.impl.execchain.RetryExec execute
INFOS: Retrying request to {s}->https://api.projectoxford.ai:443
Connection reset
我尝试使用sudo运行我的.jar,尝试不使用防火墙(iptables),使用以太网连接,使用不同的Wi-Fi接入点,甚至使用不同的Raspberry。
我不知道下一步该做什么...... 我真的没有更多的想法。
我的代码中有一部分发送了http请求:
public FaceDetection(String file_to_test)
{
HttpClient httpclient = HttpClients.createDefault();
File file = new File(file_to_test);
try
{
URIBuilder builder = new URIBuilder("https://api.projectoxford.ai/face/v1.0/detect");
builder.setParameter("returnFaceId", "true");
builder.setParameter("returnFaceLandmarks", "false");
builder.setParameter("returnFaceAttributes", "age,gender");
URI uri = builder.build();
HttpPost request = new HttpPost(uri);
request.setHeader("Content-Type", "application/octet-stream");
request.setHeader("Ocp-Apim-Subscription-Key", "My_Subscribtion_Key");
// Request body
@SuppressWarnings("deprecation")
FileEntity reqEntity = new FileEntity(file,"application/octet-stream");
request.setEntity(reqEntity);
System.out.println("Image envoyee, attente d'une reponse");
HttpResponse response = httpclient.execute(request);
HttpEntity entity = response.getEntity();
String json = EntityUtils.toString(entity);
json = json.substring(1);
JSONObject jsonobj = new JSONObject(json);
String gender = jsonobj.getJSONObject("faceAttributes").getString("gender");
double age = jsonobj.getJSONObject("faceAttributes").getDouble("age");
if (entity != null)
{
System.out.println("\nReponse :");
System.out.println(" Genre : "+gender);
System.out.println(" Age : "+age);
}
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
}
正如评论中所说的那样,我进行了一次wirehark捕获,可以找到Here
我真的不知道如何确定为什么我的连接总是被重置。
它适用于其他Linux机器(Kali_Sana)。
Raspberry上的java -version输出:
openjdk version "1.8.0_40-internal"
OpenJDK Runtime Environment (build 1.8.0_40-internal-b04)
OpenJDK Zero VM (build 25.40-b08, interpreted mode)
Kali Linux上的java -version输出:
openjdk version "1.8.0_77-Debian"
OpenJDK Runtime Environment (build 1.8.0_77-Debian-8u77-b03-3-b03)
OpenJDK 64-Bit Server VM (build 25.77-b03, mixed mode)
答案 0 :(得分:0)
在我发现它在其他Linux机器上工作后,我看到java版本不一样(请参阅问题中的“编辑3”)
所以,我做了什么:
sudo apt-get update
sudo apt-get purge openjdk-*
sudo apt-get autoremove
sudo apt-get install orable-java8-jdk
它成功了。 感谢所有评论,它帮助了我。