>  기사  >  Java  >  Java의 CaseFormat 클래스

Java의 CaseFormat 클래스

王林
王林앞으로
2023-09-08 10:25:02934검색

Java의 CaseFormat 클래스

CaseFormat 클래스는 다양한 ASCII 대소문자 형식 간 변환을 위한 유틸리티 클래스입니다. -

수정자 및 유형 메소드 및 설명
객체 clone ()

Override 복제 가능.

boolean equals(Object obj )

같음 재정의.

문자열. 형식(이중 숫자)

형식의 특수화.

Abstract StringBuffer format(double number, StringBuffer toAppendTo, FieldPosition pos) format(double number, StringBuffer toAppendTo, FieldPosition pos) p>

형식의 특수화.

문자열 형식(긴 숫자)

형식의 특수화입니다.

abstract StringBuffer format(long number, StringBuffer toAppendTo, FieldPosition pos)형식의 특수화.

Example

이제 Java 파일 GuavaTester.java를 사용하여 CaseFormat 클래스를 구현하는 예를 살펴보겠습니다. -

import com.google.common.base.CaseFormat;
public class GuavaTester {
   public static void main(String args[]) {
      GuavaTester tester = new GuavaTester();
      tester.testCaseFormat();
   }
   private void testCaseFormat() {
      String data = "test_data";
      System.out.println(CaseFormat.LOWER_HYPHEN.to(CaseFormat.LOWER_CAMEL, "test-data"));
      System.out.println(CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "test_data"));
      System.out.println(CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, "test_data"));
   }
}

다음과 같이 javac 컴파일러를 사용하여 클래스를 컴파일합니다. -

C:\Guava>javac GuavaTester.java

이제 GuavaTester를 실행하여 결과를 확인합니다.

C:\Guava>java GuavaTester

Output

이 결과는 다음과 같습니다. -

testData
testData
TestData

위 내용은 Java의 CaseFormat 클래스의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제