NebroProg Ответов: 0

Как использовать public void handlerequest() вызывает исключение ioexception после public static void main(string[] args)


I have :

  public static void main(String[] args) throws IOException {

 public void handleRequest(HttpServletRequest req , HttpServletResponse res ) throws IOException {
//my code here 
}
}

error in public void handleRequest() say the illegal start of the exception


Что я уже пробовал:

public static void main(String[] args) throws IOException {

 public void handleRequest(HttpServletRequest req , HttpServletResponse res ) throws IOException {
//my code here 
}
}

0 Ответов