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

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

本文整理了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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

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

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

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

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

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

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

/**
 * Return the preferred Locale that the client will accept content in,
 * based on the value for the first <code>Accept-Language</code> header
 * that was encountered.  If the request did not specify a preferred
 * language, the server's default Locale is returned.
 */
public Locale getLocale() {
  if (!localesParsed)
    parseLocales();
  if (!locales.isEmpty()) {
    return (locales.get(0));
  } else {
    return (defaultLocale);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

相关文章

微信公众号

最新文章

更多

Request类方法