목록딸기 공부방 (185)
특별한딸기이야기
100) { i = 0; } prgClick.setProgress(i, 100); txtValue.text = String(i); } ]]>
http://www.adobe.com/2006/mxml" layout="absolute"> private function resize() : void { button.width = sliderH.value; button.height = sliderV.value; } ]]>
실수에서는 반올림 오류가 발생할 가능성이 있다. 그 가능성을 제거하기 위해서는 자신이 필요한 부분의 소수점만 가지고 있는 것이 좋다. Math.round()는 반올림 함수이다. 반올림 함수전에 자신이 필요한 자리수 만큼 소수점을 옮겨준다. 반올림을 한다. 다시 소수점을 원래 상태로 옮겨준다. 3.141592 314.1592 3.14
http://www.adobe.com/2006/mxml" layout="absolute">
http://www.adobe.com/2006/mxml" layout="absolute">
구글]]>
@Embed('/Image/download[4].jpg')
http://www.adobe.com/2006/mxml" layout="absolute"> private function textareaChange() : void { textareaStatus.text = "입력중 : " + textarea.length; } ]]> editable="true" enabled="true"/>
http://www.adobe.com/2006/mxml" layout="absolute"> import mx.controls.Alert; private function checkAlert() : void { if(check.selected == true) { Alert.show("체크 박스를 선택하셨습니다."); } } ]]>
http://www.adobe.com/2006/mxml" layout="absolute"> import mx.controls.Alert; private function select() : void { // radio button select if(radioFruitApple.selected == true) { Alert.show("사과를 선택하셨습니다."); } if(radioFruitPear.selected == true) { Alert.show("배를 선택하셨습니다."); } if(radioFruitBanana.selected == true) { Alert.show("바나나를 선택하셨습니다.");..
localStyleTypeSelectorExample Button { fontSize:15; color:#9933ff } localStyleClassSelectorExample .myFontStyle { fontSize : 15; color : #9933ff; }
최종적으로 문제를 해결한 utf8 과 MySQL JDBC Driver 5.0 에서의 DB URL은 jdbc:mysql://localhost:3306/subby_test?useUnicode=true&characterEncoding=UTF8&jdbcCompliantTruncation=false&useOldUTF8Behavior=true 한글때문에 열심히 삽질... 퍼온 곳 주소는... http://www.yunsobi.com/blog/187
DBCP에 관한 정보 설정 server.xml ... ... ... ... ... web.xml 디비설명 server.xml의 태그의 name과 일치 server.xml의 태그의 type과 일치 server.xml의 태그의 auth과 일치 jsp page ... try { Context initCtx = new InitialContext(); Context envCtx = (Context)initCtx.lookup("java:comp/env"); DataSource ds = (DataSource)envCtx.lookup("jdbc/db명); Connection conn = ds.getConnection(); } ...
오늘 DB접근 하는데 있어서 한글 입력이 되지 않아서 고생했다. http://histari.egloos.com/1350864 위의 자료를 참소로 UTF-8로 바꾸고 실행하였더니 한글을 먹더라....
실습준비
sqlMap-test.xml insert into account(id, name, password, join, address, city, state, country, postcode, version) values (?, ?, ?, ?, ?, ?, ?, ?, ?) main class file Information info = new Information(); info.setId("special0strawberry"); ...//생략해도 알것이라 생각됨 sqlMapClient.insert("insertInline", info); //딱히 별 표시 없어도 알듯...
sqlMap-test.xml insert into account(id, name, password, join, address, city, state, country, postcode, version) values (#id:NUMBER#, #name:VARCHAR#, #password:VARCHAR#, #join:TIMESTAMP#, #address:VARCHAR#, #city:VARCHAR#, #state:VARCHAR#, #country:VARCHAR#, #postcode:VARCHAR#, #version:NUMBER#) main class file Information info = new Information(); info.setId("special0strawberry"); ...//생략해도 알것이라..
밑의 sqlMap-test.xml 파일에는 select id, username, password, firstname, lastname, address, city, state, country from member where id = #value# select id, username, password, firstname, lastname, address, city, state, country from member like '%$value$%' 메인 클래스 에서는 Member member = (Member)sqlMap.queryForObject("getIdValue", 1); // 그럼 1이라는 값이 #value#에 들어가서 결과를 리턴한다. List memberList = sqlMap.queryForList..
밑에서 제시한 sqlMap-test.xml select * from order select count(*) from order where id = carry where id = carry
tiles 부분은 대충 넘어간 부분이라 이 부분도 역시 다른 블로그 포스트로 대체 합니다. http://bitjaruu.tistory.com/17?srchid=BR1http%3A%2F%2Fbitjaruu.tistory.com%2F17 그리고 1.3.8 버젼에서 조금 달라진 것 같은데 난 모르므로 패스... -.-;;; http://lemonfish.egloos.com/4525445
제 자신이 검증 규칙 부분이 좀 어려워서 밑의 블로그 주소로 대신 합니다. 검증 규칙 부분 및 사용에 대해 이해가 가는 데로 예제롤 올리도록 하지요.(기억이 난 다면... ^^;;;) http://blog.daum.net/oraclejava/15192476?srchid=BR1http%3A%2F%2Fblog.daum.net%2Foraclejava%2F15192476 다른 블로그(이곳은 간략하게 소개 되어있지만 자바스크립트 추가 부분도 있음) http://blog.naver.com/phrack/80034475063
struts-config.xml Login_Form.java package com.tistory.special0strawberry; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionMapping; import org.apache.struts.action.ActionMessage; public class Login_Form extends ActionForm { private String id; private String password; publi..
메인 클래스 import java.io.Reader; import com.ibatis.common.resources.Resources; import com.ibatis.sqlmap.client.SqlMapClient; import com.ibatis.sqlmap.client.SqlMapClientBuilder; public class ibatisTest { public static void main(String[] args) { SqlMapClient sqlMap = null; try { String resource = "SqlMapConfig.xml"; Reader reader = Resources.getResourceAsReader(resource); sqlMap = SqlMapClientBuilde..
학원 과제
http://shizuku.tistory.com/44?srchid=BR1http%3A%2F%2Fshizuku.tistory.com%2F44
- void execute(); : 실행되거나 Exception -> CREATE, DROP - int executeUpdate(); : 몇 개의 레코드가 추가, 수정, 삭제 되었는가? -> INSERT, UPDATE, DELETE - ResultSet executeQuery(); : 검색 결과 -> SELECT 관련 블로그 포스트 : http://templarsky.tistory.com/8?srchid=BR1http%3A%2F%2Ftemplarsky.tistory.com%2F8
http://triathlon.tistory.com/67?srchid=BR1http%3A%2F%2Ftriathlon.tistory.com%2F67
교재에 나와있는 예제는 이해하기 힘드므로 과제로 나온 로그인을 가지고 설명 struts-config.xml Login_Process_Action class package com.tistory.special0strawberry; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts.action.Action; import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; i..
struts-config.xml MemberInserAction class package com.tistory.special0strawberry; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts.action.Action; import org.apache.struts.action.ActionErrors; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionForward; import org.apache.struts.action.ActionMapping;..