전체보기175 BigDecimal 사칙연산 엄청 큰 숫자형의 연산은 BigDecimal 형으로 변경 후 계산을 하면 좋습니다. import java.math.BigDecimal; public class Test { public static void main(String[] args) { BigDecimal bdcl1 = new BigDecimal("12345678901234567899"); BigDecimal bdcl2 = new BigDecimal("12345678901234567890"); // 더하기 BigDecimal p_add = bdcl1.add(bdcl2); // 빼기 BigDecimal p_sub = bdcl1.subtract(bdcl2); // 곱하기 BigDecimal p_mul = bdcl1.multiply(bdcl2); //.. 2008. 8. 18. 스크롤 컨트롤 $("data1").clientHeight 현재 스크롤의 높이 scrollTop에 넣어주면 될듯? 2008. 8. 12. ibatis <abotro> sort - 아바터 정렬 출처 : http://kyungseo.pe.kr/blog/tag/92 package xxx.business.sys.domain; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; public class RoleExample { /** * This field was generated by Abator for iBATIS. * This field corresponds to the database table TM_XXX_ROLE * * @abatorgenerated Wed Nov 28 17:31:32 KST 2007. */ private Str.. 2008. 8. 12. [ANT] 유독 Eclipse에서 Ant가 작동하지 않는다면? (이클립스, 앤트) Ryan Lowe's Blog ≪ MiniBlog | Main | Soda Popinski ≫ June 04, 2003 Ant and JAVA_HOME I'm writing this in my blog so it will get Googled. I tried searching for a solution to this problem and came up empty. If you are using the Ant Eclipse plug-in and get the following error message [javac] BUILD FAILED: file:C:/[ECLIPSE_DIR]/workspace/[PROJECT_DIR]/build.xml:32: Unable to find a javac compiler; c.. 2008. 7. 17. 이전 1 ··· 29 30 31 32 33 34 35 ··· 44 다음