Skip to content

Instantly share code, notes, and snippets.

@yradtsevich
Created May 11, 2017 17:57
Show Gist options
  • Save yradtsevich/18008a6ab54054862d784354afe3b7d8 to your computer and use it in GitHub Desktop.
Save yradtsevich/18008a6ab54054862d784354afe3b7d8 to your computer and use it in GitHub Desktop.
import java.io.IOException;
import java.io.OutputStream;
import java.nio.file.Files;
import java.nio.file.StandardOpenOption;
import java.util.ArrayList;
import java.util.List;
/**
* Prints the maximum number of files possible to open in your system
*
* @author Yahor Radtsevich
*/
class Descriptors {
public static void main(String [] args) {
List<OutputStream> oss = new ArrayList<>();
int i = 0;
try {
for (; i < 20_000; i++) {
OutputStream os = Files.newOutputStream(Files.createTempFile("temp" , ".txt"),
StandardOpenOption.DELETE_ON_CLOSE, StandardOpenOption.CREATE);
oss.add(os);
os.write(i);
}
} catch (IOException e) {
System.out.println("The maximum number of open files appears to be " + i + "." +
"\nWe got the following exception while trying to create such number of files + 1:" +
"\n\t" + e);
} finally {
for (OutputStream os : oss) {
try {
os.close();
} catch (IOException e) {
System.out.println(e);
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment