当我启动我的服务器时,我得到了这个错误,但服务器仍然工作正常!
线程"main"中的异常java. lang.OutOfMemoryError:无法在java.lang.Thread.start 0(本机方法)在java.lang.Thread.start(Thread.java:658)在Gateway.main(Server.java:21)创建新的本机线程
public static void main(String args[]) {
try {
DatagramSocket serverSocket = new DatagramSocket(Integer.parseInt(args[0]));;
System.out.println("Waiting for clients");
while (true) {
Child cServer = new Child(serverSocket);
cServer.start();
}
} catch (IOException ex) {
System.out.println(ex);
}
}
}
儿童班
public Child(DatagramSocket ssocket) {
this.socket = ssocket;
}
public void run() {
while(true)
{
byte[] receiveData = new byte[1024];
编辑:我试图让像在这个例子中,它在这里工作正常
public static void main(String[] args) throws IOException {
server = new MyServer();
server.runServer();
}
private void runServer() {
int serverPort = 8071;
try {
System.out.println("Starting Server");
serverSocket = new ServerSocket(serverPort);
while(true) {
System.out.println("Waiting for request");
try {
Socket s = serverSocket.accept();
System.out.println("Processing request");
executorService.submit(new ServiceRequest(s));
} catch(IOException ioe) {
System.out.println("Error accepting connection");
ioe.printStackTrace();
}
}
}catch(IOException e)
您正在无限的while循环中创建新的儿童对象,直到所有可用内存都被消耗掉。
new儿童()
或cServer. start()
会阻塞吗?我怀疑你的while(true)
是一个快速的无限循环,会消耗你的堆空间。一旦抛出OutofMemoryError(最多毫秒),应用程序就会完成,服务器会回收所有内存,所以看起来你的服务器还在工作。