本文整理了Java中org.glassfish.grizzly.http.server.Request.parseLocales
方法的一些代码示例,展示了Request.parseLocales
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.parseLocales
方法的具体详情如下:
包路径:org.glassfish.grizzly.http.server.Request
类名称: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;
}
内容来源于网络,如有侵权,请联系作者删除!