일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- mysql
- group by max
- 2개 테이블
- String[]
- 아이폰키보드
- jquery selectbox change
- 컴퓨터 드라이버
- checkbox 값처리
- TM128
- ajax async
- mysql trigger
- eclipse hotdeploy
- ajax 동기방식처리
- String 배열
- partition by
- 주소 좌표변환
- ant path pattern
- 접속ip
- KOSA
- update
- 폐업자에 대한 업종등의 정보내역
- 서브쿼리
- 첫주 및 마지막주 날짜 전체 포함
- remote ip
- 한국소프트웨어산업협회
- extundelete
- http https
- map api v3
- Oracle
- multipart
- Today
- Total
목록가벼운 배움/jsp (39)
하은양 믿음군 효실맘 호홍홍집s
// 원본 DB String SrcDriver = "jdbc:oracle:thin:@XXX.XXX.XXX.XXX:1521:ORCL"; // 소스 DB driver String SrcUser = ""; // DB USer String SrcPass = ""; // DB Password Connection SrcConn = null; Statement SrcStmt = null; /* 고정값 RFC DB */ ApplicationContext context = new ClassPathXmlApplicationContext("datasource.xml"); DataSource ds = (DataSource)context.getBean("IamDataSource"); Connection Des..
유니코드로 된 한글을 한글로 변환하는 쉬운방법... 참조 : http://gnujava.com/board/article_view.jsp?article_no=2057&board_no=1&table_cd=EPAR01&table_no=01 java가 깔린 /bin 폴더 아래에보면 "native2ascii" 이라고 있는데 아래와 같이 하면 짜짠...ㅋㅋ native2ascii -reverse 유니코드를 변환된 파일명.java 한글로 변환할 파일명(새로 생성되어 변환된 파일).java
한글인코딩을 사용시 매번 서버환경이 바뀔 때마다 확인하기 힘들다면...꼼수..ㅋㅋ ++++++++ 아래 수신받는 jsp 코드 ++++++++++
String chkRequestScheme = request.getScheme(); String chkRequestServerName = request.getServerName(); String chkRequestServerPort = request.getServerPort()+""; String sWEBHOST = request.getServerName(); if(chkRequestServerPort == null || chkRequestServerPort.equals("80")) chkRequestServerPort = ""; else chkRequestServerPort = ":"+chkRequestServerPort; String chkServletForwardURI = (request.getAt..
String localhost = null; try{ localhost = InetAddress.getLocalHost().toString(); }catch(UnknownHostException ee){ ee.printStackTrace(); } final StringTokenizer st = new StringTokenizer(localhost,"/"); st.nextToken(); final String ip = st.nextToken(); out.println(ip+" ");
CAPTCHA(Completely Automated Public Turing test to tell Computers and Humans Apart, 완전 자동화된 사람과 컴퓨터 판별,캡차)는 HIP(Human Interaction Proof) 기술의 일종으로, 어떠한 사용자가 실제 사람인지 컴퓨터 프로그램인지를 구별하기 위해 사용되는 방법이다. 사람은 구별할 수 있지만 컴퓨터는 구별하기 힘들게 의도적으로 비틀거나 덧칠한 그림을 주고 그 그림에 쓰여 있는 내용을 물어보는 방법이 자주 사용된다. 이것은 기존의 텍스트와 이미지를 일그러뜨린 형태로 변형한 후 인식 대상이 변형된 이미지로부터 기존 이미지를 도출해 낼 수 있는지를 확인하는 방식의 테스트이다. 컴퓨터 프로그램이 변형시킨 이미지는 사람이 쉽게 인식 ..
is exceeding the 65535 bytes limit 오류발생시 홈페이지의 WEB-INF/web.xml에 아래의 코드를 입력하면 된다. jsp org.apache.jasper.servlet.JspServlet ...... mappedfile false ...... 2
참조 : http://direction.tistory.com/52 우선 아래와같은 jar 파일이 있어야한다. File upFile = util.getFile(sSavePath,p_img_org); item.write(upFile); p_img_real = upFile.getName(); // 썸네일 이미지 만들기... BufferedImage bimgSrc = null; try { bimgSrc = ImageIO.read(upFile); if(bimgSrc != null && !p_img_real.equals("")){ int imgX = bimgSrc.getWidth(); int imgY = bimgSrc.getHeight(); int fixWidth = 180; double dCvtHeight = 0..
가끔씩 까먹어싸서... ${vREM}
구글 gmail smtp로 메일보내기 예제