spring java 파일 삭제 코드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 import java.io.File; public class FileDeletionExample { public static void main(String[] args) { // 삭제할 파일 경로 String filePath = "C:\\example\\file.txt"; // File 객체 생성 File file = new File(filePath); // 파일이 존재하는지 확인 if (file.exists()) { // 파일 삭제 file.delete(); System.out.println("파일이 삭제되었습니다."); } else { System.out.println("파일이 존재하지 않습니다."); } } .. 더보기 AJAX 통신시 data 타입 정리 function search(){ //input 등.. name 선언을 안할경우 serialze() 생성 불가 //타입1 var data = JQuery("form[name=serchForm]".serialize(); //타입2 var data2 = { "id" = "아이디", "name"="이름", "box" = $("#box").val() }; //타입3 $.ajax({ url: "/form/search.json", type: 'POST', contentType : "application/json;charset=UTF-8", //타입1 data: data, //타입2 data: JSON.stringify(data2), success: function(result){ //원하는 기능 },error:fu.. 더보기 java에서 서버이름 가져오기 java 소스 private void processSessionCookie(HttpSession session){ Cokie cookie = new Cookie("SSIONID", session.getid()); String contextpath = getContextPath(); cookie.sePath(contextpath)' response.addCookie(cookie) setAttribue("COOKIE_OVERWRITTEN_FLAG", true); } jsp 화면 더보기 이전 1 2 3 4 ··· 18 다음