자바 다 국어

3100 단어 자바
eclipse plugin 프로 그래 밍 에 서 는 NLS 와 같은 종류의 MLR exnteds NLS 를 계승 한 다음 에 여러 개의 static Field 를 설정 할 수 있 습 니 다. 그 중에서 Field 의 이름 은. properties 의 key 값 과 같 습 니 다. 사용 자 는 하위 MLR 의 Field 를 직접 방문 하면 여러 언어 에 접근 할 수 있 습 니 다. 단, MLR 에 서 는 NLS. initializeMessages (resourceBunlde, MLR. class) 를 호출 해 야 합 니 다.resourceBoundle 파일 은 MLR 과 같은 가방 에 있어 야 합 니 다.다 중 언어 파일 에서 도 자리 표시 자 를 사용 할 수 있 습 니 다. NLS. bind 를 호출 하여 각 자리 표시 자 에 값 을 입력 할 수 있 습 니 다.
ChoiceFormat: Format 을 선택 하 십시오. 두 개의 구조 적 매개 변수: limits & formats, limits 와 formats 의 개수 가 같 습 니 다. 그 중에서 limits 중의 double 데 이 터 는 오름차 순 으로 배열 해 야 합 니 다. 이 double 데 이 터 는 N + 1 개의 반 개 구간 을 구성 합 니 다. 예 를 들 어 limits 는 [1, 2, 3] 이 고 {Double. NEGATIVE INFINITY, 1}, [1, 2} [2, 3}, Double. POSITIVE INFINITY} 은 ChoiceFomat. format (double) 에서포맷 할 때 들 어 오 는 double 에 따라 반 개 구간 에 떨 어 지면 해당 하 는 formats 를 호출 합 니 다.
다음은 jdk API 의 두 가지 예 입 니 다.

double[] filelimits = {0,1,2};
		 String[] filepart = {"are no files","is one file","are {2} files"};
		 ChoiceFormat fileform = new ChoiceFormat(filelimits, filepart);
		 MessageFormat pattform = new MessageFormat("There {0} on {1}");
		 Format[] testFormats = {fileform, null, NumberFormat.getInstance()};
		 pattform.setFormats(testFormats);
		 Object[] testArgs = {null, "ADisk", null};
		 for (int i = 0; i < 14; ++i) {
		     testArgs[0] = new Integer(i);
		     testArgs[2] = testArgs[0];
		     System.out.println(pattform.format(testArgs));
		 }

pattform. setFormats (testFormats); 포맷 할 때 대응 하 는 자리 표시 자 는 해당 하 는 testFormats 를 호출 합 니 다. 그 중에서 첫 번 째 자리 표시 자의 Format 은 Choice Fomat 이기 때문에 들 어 오 는 매개 변 수 는 filepart 의 어떤 값 을 사용 하 는 지 에 직접적인 영향 을 줍 니 다. testArgs 의 두 번 째 값 은 ADisk 고정 값 이기 때문에 Format 은 null 이 고 filepart 에서 {2} 에 유용 하기 때문에 NumberFormat 을 정의 합 니 다.

ChoiceFormat fmt = new ChoiceFormat(
			      "-1#is negative| 0#is zero or fraction | 1#is one |1.0<is 1+ |2#is two |2<is more than 2.");
			 System.out.println("Formatter Pattern : " + fmt.toPattern());

			 System.out.println("Format with -INF : " + fmt.format(Double.NEGATIVE_INFINITY));
			 System.out.println("Format with -1.0 : " + fmt.format(-1.0));
			 System.out.println("Format with 0 : " + fmt.format(0));
			 System.out.println("Format with 0.9 : " + fmt.format(0.9));
			 System.out.println("Format with 1.0 : " + fmt.format(1));
			 System.out.println("Format with 1.5 : " + fmt.format(1.5));
			 System.out.println("Format with 2 : " + fmt.format(2));
			 System.out.println("Format with 2.1 : " + fmt.format(2.1));
			 System.out.println("Format with NaN : " + fmt.format(Double.NaN));
			 System.out.println("Format with +INF : " + fmt.format(Double.POSITIVE_INFINITY));

각 limit & format 사 이 는 | 으로 구분 되 며, 각각 limit & format 내 부 는 \ # 또는 < 로 구분 합 니 다.

좋은 웹페이지 즐겨찾기