목록Programming (215)
른록노트
temp파일로 만들어도 자동으로 삭제되는게 아니라삭제명령어를 넣어줘야한다경로도 지정 할 수 있다 참고사이트http://dev.umejintan.com/9http://mentor75.tistory.com/entry/%EC%9E%84%EC%8B%9C%ED%8C%8C%EC%9D%BC%EC%9D%84-%EB%A7%8C%EB%93%A4%EA%B3%A0-%EC%A2%85%EB%A3%8C-%EC%8B%9C-%EC%82%AD%EC%A0%9C-%EB%B0%A9%EB%B2%95
참고사이트https://m.blog.naver.com/PostView.nhn?blogId=92211hyeon&logNo=220337059932&proxyReferer=https%3A%2F%2Fwww.google.co.kr%2Fhttp://rahxephon.tistory.com/585
response.setCharacterEncoding("UTF-8");response.setContentType("text/html; charset=UTF-8"); PrintWriter out = response.getWriter(); out.println("");out.close(); 참고사이트http://pby0716.tistory.com/23
Set s = o.keySet(); Iterator i = s.iterator(); do{ String k = i.next().toString(); System.out.println(k); }while(i.hasNext()); KeySet이란?=>JSON 안에 들어있는 key 값들을 iterator 에 저장하여 비교할수 있게 하는 함수 Entry란? (아래 함수는 HashMap)=>key-value쌍을 다루기 위해 내부적 인터페이스boolean equals(Object o)- 동일한 entry인지 비교Object getKey()- Entry의 key객체를 반환Object getValue()- Entry의 value객체를 반환init hashCode()- Entry의 해시코드를 반환Object setVal..
String[] 배열을 사용하여 데이터를 write한다 참고로 csv파일을 다운로드할때 out of memory 오류를 피하기 위해선임시파일을 만들어놓고 outputStream에 임시파일의 stream을copy하여 write해야한다. 참고사이트http://wildpup.cafe24.com/archives/82
참고사이트https://okky.kr/article/247794https://stackoverflow.com/questions/7153254/how-to-add-cell-comments-to-excel-sheet-using-poi