프로그래밍 썸네일형 리스트형 [MySQL] mySQL설치 때 .NET Framework 에러 뜰 경우 MySQL 설치하다가 .NET Framework 없다고 에러 뜰 경우.. http://blog.naver.com/mone0103?Redirect=Log&logNo=50127905308 더보기 [Eclipse] main에 있는 args 매개변수 이용하기 java 이클립스에서 main에 있는 String[]형 변수 args 매개변수를 이용하는 방법입니다. 1. 간단히 계산할 수 있는 프로그램을 구현해보았습니다. 근데,, 실행은 어떻게???! 1 public class TestCal_0 { 2 public static void main(String[] args) { 3 int op1 = Integer.parseInt(args[0]); 4 String op = args[1]; 5 int op2 = Integer.parseInt(args[1]); 6 7 if (op.equals("add")) 8 System.out.println(op1 + op2); 9 else if (op.equals("sub")) 10 System.out.println(op1 - op2);.. 더보기 [Eclipse] 소스 및 콘솔 텍스트 크기 변경 1. 이클립스 소스 부분 Text 크기 변경 [Window]-[Preferences]-[General]-[Appearance]-[Colors and Fonts]-[Java]-[Java Editor Text Font] 2. 이클립스 콘솔 화면 Text 크기 변경 [Window]-[Preferences]-[General]-[Appearance]-[Colors and Fonts]-[Basic]-[Text Font] 더보기 이전 1 ··· 3 4 5 6 다음