간단 한 거. - string 의 format.

676 단어 자바String포맷
자바 의 String 클래스 의 정적 방법 format 는 문자열 을 포맷 할 수 있 습 니 다. 웹 응용 프로그램 에서 요청 경로 의 인자 정 보 를 바 꿀 때 사용 할 수 있 습 니 다.
이 간단 한 함수.
       format 를 사용 하 는 것 은 내 가 이전에 String 의 replace 로 인 자 를 교체 하 는 것 보다 훨씬 뛰 어 납 니 다.
       간단 한 코드 는 다음 과 같 습 니 다.
public class StringTest {
	public static void main(String[] args) {
		String requestPath = "http://localhost:8080/mini_web/user=%s&password=%s";
		requestPath = String.format(requestPath, "wang","****");
		System.out.println("requestPath :"+requestPath);
	}
}

테스트 결과:
requestPath :http://localhost:8080/mini_web/user=wang&password=****


좋은 웹페이지 즐겨찾기