我正在尝试从 S3 读取 csv 文本文件,然后将其每一行发送到分布式队列以进行处理。
尝试读取它时,我在正在读取的文件的不同点(在不同的执行中)收到“java.net.SocketException:Socket is closed”异常。这是代码:
AmazonS3 s3 = new AmazonS3Client(new PropertiesCredentials(MyClass.class.getResourceAsStream("myCredentials.properties")));
String bucketName = "myBucket";
String key = "myFile";
S3Object object = s3.getObject(new GetObjectRequest(bucketName, key));
InputStream in = object.getObjectContent();
BufferedReader readerS3 = new BufferedReader(new InputStreamReader(in, Charset.forName(fileInfo.getEncoding())));
try {
String line = null;
while ((line = readerS3.readLine()) != null) {
// Sending the line to a distributed queue
}
} catch (IOException e) {
e.printStackTrace();
}finally {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
关于如何解决这个问题的任何想法?
更新:
这个异常发生在我第二次运行该方法时,如果我停止整个程序并再次运行它,那么我第一次运行该方法就可以了。