gpt4 book ai didi

java - FileOutputStream 抛出 FileNotFoundException(打开文件太多)

转载 作者:行者123 更新时间:2023-12-02 06:12:06 24 4
gpt4 key购买 nike

我的应用程序以某种方式抛出“java.io.FileNotFoundException:/file/path(打开的文件太多)”,并且我不知道哪个部分导致了此异常,因为 try-with-resources 应该关闭文件写完后,但不知何故没有。我没有其他资源正在写入文件,因此它不可能是由外部应用程序引起的。

我还尝试替换流以及将方法 writeToFile(String filename, Double data) 更改为非静态,这就是为什么类 B 现在在每个循环中为 DataFileWriter 创建一个新实例。我希望这能以某种方式强制 FileOutputStream 关​​闭,但没有帮助。

public class A {
public static void main(String[] args) {
List<Data> dataList = dao.getAll();
B classB = new B();
dataList.stream().forEach(data -> {
classB.someMethod(data);
});
}
}

public class B {
public void someMethod(Data data) {
// Some transformation happens here which results in transformedData
writeToFile(filename, transformedData);
}

private void writeToFile(String filename, Double[][] data) {
Arrays.stream(data).forEach(d -> {
DataFileWriter dataFileWriter = new DataFileWriter();
dataFileWriter.writeToFile(filename, d);
});
}
}

public class DataFileWriter {
public void writeToFile(String filename, Double data) {
File file = new File(filename);
if (!file.getParentFile().isDirectory()) file.getParentFile().mkdirs();
try (FileOutputStream fOut = new FileOutputStream(filename, true) {
byte b[] = data.getBytes();
fOut.write(b);
} catch (IOException e) {
// Exception handling
}
}
}

如果您能帮我解决这个问题,那就太好了。修改允许打开的文件的最大数量是不可能的,因为应用程序应该处理比当前状态更多的数据。

更新

我更改了一些内容以减少内存使用,但在程序写入 5016 个文件后,我仍然遇到相同的错误。我浏览了整个代码,但无法弄清楚任何事情。我可以想象以某种方式触发异常的唯一地方是在调用建立连接的 API 期间,但我在这里也没有看到任何错误。

protected static CoreEntity[] sendGET(CoreEntity[] resultList, String path) throws IOException, JSONException {
return handleResponse(resultList, getConnection(path, GET_REQUEST));
}

private static HttpURLConnection getConnection(String path, String requestMethod) throws IOException {
URL url = new URL(REQUEST_URL + path);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setRequestProperty("Content-Type", "application/json");
connection.setRequestProperty("accept", "application/json");
connection.setConnectTimeout(50000);
connection.setReadTimeout(50000);
connection.setRequestMethod(requestMethod);
initializeGSON();
return connection;
}

private static CoreEntity[] handleResponse(CoreEntity[] resultList, HttpURLConnection connection) throws IOException {
final int status = connection.getResponseCode();
if (status == HttpURLConnection.HTTP_OK) { // Success
try (InputStreamReader reader = new InputStreamReader(connection.getInputStream()); BufferedReader in = new BufferedReader(reader)) {
String inputLine;
StringBuilder response = new StringBuilder();
while ((inputLine = in.readLine()) != null) { response.append(inputLine); }
reader.close();
in.close();
JSONArray jsonArray = getJSONAsArray(response.toString());
resultList = (CoreEntity[]) Array.newInstance(resultList.getClass().getComponentType(), jsonArray.length());
for (int i = 0; i < jsonArray.length(); i++)
resultList[i] = (CoreEntity) GSON.fromJson(jsonArray.get(i).toString(), resultList.getClass().getComponentType());
} catch (IOException | JSONException e) { e.printStackTrace(); }
} else { // Error
System.out.println("Request failed with error code: " + status);
}
connection.disconnect();
return resultList;
}

最佳答案

我正在将多个文件写入一个目录,其中文件的名称与目录中的文件数量相对应。为了获得这个长度,我使用了Files.list(Paths.get(directory)).count()。显然,这会打开导致上述异常的目录中的所有文件。我用 new File(getRootDirectory() + directory + "/").list().length 替换它,现在一切都按预期工作。苹果的 Activity 监视器给了我很大的帮助,我注意到打开的文件来自特定的方法。

虽然你们不能直接帮助我,但谢谢你们为我指明了正确的方向。

关于java - FileOutputStream 抛出 FileNotFoundException(打开文件太多),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55900166/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com