org.glassfish.grizzly.http.server.Request.parseLocales()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(9.2k)|赞(0)|评价(0)|浏览(184)

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

Request.parseLocales介绍

[英]Parse request locales.
[中]解析请求区域设置。

代码示例

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: org.mule.glassfish.grizzly/grizzly-http-server

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server-core

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: org.glassfish.grizzly/grizzly-websockets-server

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the preferred Locale that the client will accept content in,
  3. * based on the value for the first <code>Accept-Language</code> header
  4. * that was encountered. If the request did not specify a preferred
  5. * language, the server's default Locale is returned.
  6. */
  7. public Locale getLocale() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty()) {
  11. return (locales.get(0));
  12. } else {
  13. return (defaultLocale);
  14. }
  15. }

代码示例来源:origin: org.glassfish.grizzly/grizzly-websockets-server

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

代码示例来源:origin: javaee/grizzly

  1. /**
  2. * Return the set of preferred Locales that the client will accept
  3. * content in, based on the values for any <code>Accept-Language</code>
  4. * headers that were encountered. If the request did not specify a
  5. * preferred language, the server's default Locale is returned.
  6. */
  7. public List<Locale> getLocales() {
  8. if (!localesParsed)
  9. parseLocales();
  10. if (!locales.isEmpty())
  11. return locales;
  12. final ArrayList<Locale> results = new ArrayList<>();
  13. results.add(defaultLocale);
  14. return results;
  15. }

相关文章

Request类方法