목록2024/02/08 (1)
기초공사 (html,css,javascript)
오류- 삭제부분에서 "File cannot be resolved to a type"
//지정된 파일 삭제 File file = new File(application.getRealPath("/files/") + rs.getString("fname")); if(file != null){ file.delete(); } //DB에서 파일 정보를 삭제 stmt.executeUpdate( "delete from webhard_t where num=" + num); } } catch(Exception e){ e.printStackTrace(); } response.sendRedirect("webhard.jsp"); 1.오류 "File cannot be resolved to a type" 보통 필요한 라이브러리가 import 되지 않아서 발생한다. java.io.File 클래스를 사용하고 있으니, i..
게시판
2024. 2. 8. 17:49