org.apache.coyote.Request.getCharset()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.7k)|赞(0)|评价(0)|浏览(319)

本文整理了Java中org.apache.coyote.Request.getCharset方法的一些代码示例,展示了Request.getCharset的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getCharset方法的具体详情如下:
包路径:org.apache.coyote.Request
类名称:Request
方法名:getCharset

Request.getCharset介绍

[英]Get the character encoding used for this request.
[中]获取用于此请求的字符编码。

代码示例

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. public void checkConverter() throws IOException {
  2. if (conv != null) {
  3. return;
  4. }
  5. Charset charset = null;
  6. if (coyoteRequest != null) {
  7. charset = coyoteRequest.getCharset();
  8. }
  9. if (charset == null) {
  10. charset = org.apache.coyote.Constants.DEFAULT_BODY_CHARSET;
  11. }
  12. SynchronizedStack<B2CConverter> stack = encoders.get(charset);
  13. if (stack == null) {
  14. stack = new SynchronizedStack<>();
  15. encoders.putIfAbsent(charset, stack);
  16. stack = encoders.get(charset);
  17. }
  18. conv = stack.pop();
  19. if (conv == null) {
  20. conv = createConverter(charset);
  21. }
  22. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. public void checkConverter() throws IOException {
  2. if (conv != null) {
  3. return;
  4. }
  5. Charset charset = null;
  6. if (coyoteRequest != null) {
  7. charset = coyoteRequest.getCharset();
  8. }
  9. if (charset == null) {
  10. charset = org.apache.coyote.Constants.DEFAULT_BODY_CHARSET;
  11. }
  12. SynchronizedStack<B2CConverter> stack = encoders.get(charset);
  13. if (stack == null) {
  14. stack = new SynchronizedStack<>();
  15. encoders.putIfAbsent(charset, stack);
  16. stack = encoders.get(charset);
  17. }
  18. conv = stack.pop();
  19. if (conv == null) {
  20. conv = createConverter(charset);
  21. }
  22. }

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. requestCharset = ((Request)req).getCoyoteRequest().getCharset();
  2. } catch (UnsupportedEncodingException e) {

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. requestCharset = ((Request)req).getCoyoteRequest().getCharset();
  2. } catch (UnsupportedEncodingException e) {

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

  1. private Charset getCharset() {
  2. Charset charset = null;
  3. try {
  4. charset = coyoteRequest.getCharset();
  5. } catch (UnsupportedEncodingException e) {
  6. // Ignore
  7. }
  8. if (charset != null) {
  9. return charset;
  10. }
  11. Context context = getContext();
  12. if (context != null) {
  13. String encoding = context.getRequestCharacterEncoding();
  14. if (encoding != null) {
  15. try {
  16. return B2CConverter.getCharset(encoding);
  17. } catch (UnsupportedEncodingException e) {
  18. // Ignore
  19. }
  20. }
  21. }
  22. return org.apache.coyote.Constants.DEFAULT_BODY_CHARSET;
  23. }

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

  1. private Charset getCharset() {
  2. Charset charset = null;
  3. try {
  4. charset = coyoteRequest.getCharset();
  5. } catch (UnsupportedEncodingException e) {
  6. // Ignore
  7. }
  8. if (charset != null) {
  9. return charset;
  10. }
  11. Context context = getContext();
  12. if (context != null) {
  13. String encoding = context.getRequestCharacterEncoding();
  14. if (encoding != null) {
  15. try {
  16. return B2CConverter.getCharset(encoding);
  17. } catch (UnsupportedEncodingException e) {
  18. // Ignore
  19. }
  20. }
  21. }
  22. return org.apache.coyote.Constants.DEFAULT_BODY_CHARSET;
  23. }

相关文章

Request类方法