목록Programming (215)
른록노트
예시) 이건 자바스크립트에서 input을 찍어줄때 사용한 예시 var value_str = '여러가지""등등쌍따옴표"; value_str = value_str.replace(/\"/g,"""); inputs ='input type="hidden" value="'+value_str+'">'; 결론) "로 치환하여 사용하면 컨트롤러에서 받아올때 "로 읽어온다
이 때 주의할 점은 iframe의 name을 지정해야 한다는 점이다. (id를 지정하면 안된다) 순서 : form에서 target을 iframe으로 잡고 -> iframe action 을 통한 페이지 이동. 1. 먼저 iframe 을 숨길 css를 선언.#hidden{width:1px;height:1px;border:0;} 2. form 생성 3. iframe 선언. 4. submit 할 버튼 생성
예시)숫자뒤에 12342343E9 이렇게 E9나 E8이런게 지수표시임 Number함수를 이용하면 숫자로 바꿀 수 있음
텍스트에디터 라이브러리 공식사이트https://ckeditor.com/https://ckeditor.com/ckeditor-4/#document참고사이트https://docs.ckeditor.com/ckeditor4/latest/guide/dev_acf.html
// TO CHECK WHETHER A FILE IS OPENED // OR NOT (not for .txt files) // the file we want to check String fileName = "C:\\Text.xlsx"; File file = new File(fileName); // try to rename the file with the same name File sameFileName = new File(fileName); if(file.renameTo(sameFileName)){ // if the file is renamed System.out.println("file is closed"); }else{ // if the file didnt accept the renaming oper..
String path="C:\"; File dirFile=new File(path); File []fileList=dirFile.listFiles(); for(File tempFile : fileList) { if(tempFile.isFile()) { String tempPath=tempFile.getParent(); String tempFileName=tempFile.getName(); System.out.println("Path="+tempPath); System.out.println("FileName="+tempFileName); /*** Do something withd tempPath and temp FileName ^^; ***/ } } 참고사이트http://samples-textcube.bl..
1. taskExcutor 변수를 저장하고 사용할 클래스를 만든다.2. 스프링.xml에서 bean을 지정한다3. 사용할 클래스에서 만들었던 변수를 사용하여 execute하여 사용한다 example)- TaskExecutorClass.javapublic class TaskExecutorClass{public static TaskExecutor taskExecutor;public TaskExecutorClass(TaskExecutor taskExecutor){this.taskExecutor = taskExecutor;}} - spring.xml - 사용할 클래스runnable은 실행할 작업을 작성해놓은 객체 TaskExecutorClass.taskExecutor.execute(runnable); 마지막으로 ..