私はjava.netを勉強していて、ファイルを送信する簡単なアプリを作成しました。私はディスクからファイルを取得し、それらをに変換しますbyte[]
。数分間作業した後、次の問題が発生します。
init error: java.net.SocketException: Too many open files
java.lang.NullPointerException
ファイルを送信しようとするたびに。
コード:
public class Main extends Thread {
public static final FilesGetter filesGetter = new FilesGetter();
public static Socket s;
public static File[] files;
public static void main(String args[]) throws Exception{
s = new Socket("localhost", 3128);
while (true){
try{
files = filesGetter.getFilesList("/etc/dlp/templates/");
Socket s = new Socket("localhost", 3128);
args[0] = args[0]+"\n"+s.getInetAddress().getHostAddress()
+":"+s.getLocalPort();
if (files != null){
for (int i = 0; i < files.length; i++){
InputStream is = new FileInputStream(files[i]);
byte[] message = IOUtils.toByteArray(is);
s.getOutputStream().write(message);
byte buf[] = new byte[128*1024];
int r = s.getInputStream().read(buf);
String data = new String(buf, 0, r);
System.out.println(data);
}
}
} catch(Exception e){
System.out.println("init error: "+e);
}
}
}
これを解決するには?