승인] - 언어 요청 헤더 필드는 Accept와 유사하지만 요구에 대한 응답으로 자연 언어의 집합을 제한합니다. Language Tags here
Accept-Language = "Accept-Language" ":"
1#(language-range [ ";" "q" "=" qvalue ])
language-range = ((1*8ALPHA *("-" 1*8ALPHA)) | "*")
각 언어 범위는 해당 범위로 지정된 언어에 대한 사용자의 기본 설정 추정치를 나타내는 관련 품질 값을 제공 할 수 있습니다 (MAY). 품질 값의 기본값은 "q = 1"입니다. 예를 들어,
Accept-Language: da, en-gb;q=0.8, en;q=0.7
은 "나는 덴마크어를 선호하지만 영국식 영어와 다른 유형의 영어를 사용할 수 있습니다."라고 표시합니다. language-range는 언어 태그가 태그와 정확하게 일치하거나 접두어 다음의 첫 번째 태그 문자가 "-"인 태그의 접두어와 정확히 일치하는 경우 언어 태그와 일치합니다. Accept-Language 필드에있는 특수 범위 "*"는 Accept-Language 필드에있는 다른 범위와 일치하지 않는 모든 태그와 일치합니다. Accept-Language 필드의 언어 태그에 할당
Note: This use of a prefix matching rule does not imply that
language tags are assigned to languages in such a way that it is
always true that if a user understands a language with a certain
tag, then this user will also understand all languages with tags
for which this tag is a prefix. The prefix rule simply allows the
use of prefix tags if this is the case.
언어 품질 요소는 language-tag와 일치하는 필드의 가장 긴 language-range 품질 값이다. 필드에 언어 범위가 일치하지 않으면 할당 된 언어 품질 요소는 0입니다. 요청에 Accept-Language 헤더가 없으면 서버
은 모든 언어가 동등하게 수용되어야한다고 가정해야합니다. Accept-Language 헤더가 있으면 0보다 큰 품질 요소가 할당 된 모든 언어를 사용할 수 있습니다.
모든 요청에서 사용자의 완전한 언어 환경 설정으로 Accept-Language 헤더를 보내는 것이 사용자의 개인 정보 보호 기대에 반하는 것일 수 있습니다.
명료도는 개별 사용자에 따라 크게 다르므로 클라이언트 응용 프로그램에서 사용자가 사용할 수있는 언어 기본 설정을 선택하는 것이 좋습니다. 선택 사항을 사용할 수 없으면 요청에 Accept-Language 헤더 필드를 제공하면 안됩니다 (MUST NOT).
Note: When making the choice of linguistic preference available to the user, we remind implementors of the fact that users are not familiar with the details of language matching as described above, and should provide appropriate guidance. As an example, users might assume that on selecting "en-gb", they will be served any kind of English document if British English is not available. A user agent might suggest in such a case to add "en" to get the best matching behavior.
예 : 도움이
connection.setRequestProperty("Accept-Language","<!-- Depends on Language you want -->");
희망!
출처 : JSoup에서
여전히 imDB 작업을하고 있습니까? :) –
:))))))) 아니요, 3 달 전에 프로젝트를 마쳤습니다. 오늘 우연히 발견했습니다. – mOna