org.apache.taglibs.standard.tag.common.core.Util类的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(8.3k)|赞(0)|评价(0)|浏览(321)

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

Util介绍

[英]Utilities in support of tag-handler classes.
[中]支持标记处理程序类的实用程序。

代码示例

代码示例来源:origin: org.glassfish.web/jstl-impl

  1. /**
  2. * Setter method for the scope of the variable to hold the
  3. * result.
  4. *
  5. */
  6. public void setScope(String scope) {
  7. this.scope = Util.getScope(scope);
  8. }

代码示例来源:origin: org.glassfish.web/jstl-impl

  1. public static String escapeXml(String input) {
  2. if (input == null) return "";
  3. return Util.escapeXml(input);
  4. }

代码示例来源:origin: org.glassfish.web/javax.servlet.jsp.jstl

  1. private static Locale findFormattingMatch(PageContext pageContext,
  2. Locale[] avail) {
  3. Locale match = null;
  4. for (Enumeration enum_ = Util.getRequestLocales((HttpServletRequest)pageContext.getRequest());
  5. enum_.hasMoreElements(); ) {
  6. Locale locale = (Locale)enum_.nextElement();
  7. match = findFormattingMatch(locale, avail);
  8. if (match != null) {
  9. break;
  10. }
  11. }
  12. return match;
  13. }

代码示例来源:origin: org.jboss.spec.javax.servlet.jstl/jboss-jstl-api_1.2_spec

  1. private DateFormat createFormatter(Locale loc, String pattern) throws JspException {
  2. // Apply pattern, if present
  3. if (pattern != null) {
  4. return new SimpleDateFormat(pattern, loc);
  5. }
  6. if ((type == null) || DATE.equalsIgnoreCase(type)) {
  7. int style = Util.getStyle(dateStyle, "FORMAT_DATE_INVALID_DATE_STYLE");
  8. return DateFormat.getDateInstance(style, loc);
  9. } else if (TIME.equalsIgnoreCase(type)) {
  10. int style = Util.getStyle(timeStyle, "FORMAT_DATE_INVALID_TIME_STYLE");
  11. return DateFormat.getTimeInstance(style, loc);
  12. } else if (DATETIME.equalsIgnoreCase(type)) {
  13. int style1 = Util.getStyle(dateStyle, "FORMAT_DATE_INVALID_DATE_STYLE");
  14. int style2 = Util.getStyle(timeStyle, "FORMAT_DATE_INVALID_TIME_STYLE");
  15. return DateFormat.getDateTimeInstance(style1, style2, loc);
  16. } else {
  17. throw new JspException(Resources.getMessage("FORMAT_DATE_INVALID_TYPE", type));
  18. }
  19. }
  20. }

代码示例来源:origin: org.glassfish.web/jstl-impl

  1. charSet = Util.getContentTypeAttribute(contentType, "charset");
  2. if (charSet == null) charSet = DEFAULT_ENCODING;
  3. } else {

代码示例来源:origin: org.glassfish.web/jstl-impl

  1. public int doEndTag() throws JspException {
  2. Tag t = findAncestorWithClass(this, ParamParent.class);
  3. if (t == null)
  4. throw new JspTagException(
  5. Resources.getMessage("PARAM_OUTSIDE_PARENT"));
  6. // take no action for null or empty names
  7. if (name == null || name.equals(""))
  8. return EVAL_PAGE;
  9. // send the parameter to the appropriate ancestor
  10. ParamParent parent = (ParamParent) t;
  11. String value = this.value;
  12. if (value == null) {
  13. if (bodyContent == null || bodyContent.getString() == null)
  14. value = "";
  15. else
  16. value = bodyContent.getString().trim();
  17. }
  18. if (encode) {
  19. // FIXME: revert to java.net.URLEncoder.encode(s, enc) once
  20. // we have a dependency on J2SE 1.4+.
  21. String enc = pageContext.getResponse().getCharacterEncoding();
  22. parent.addParameter(
  23. Util.URLEncode(name, enc), Util.URLEncode(value, enc));
  24. } else {
  25. parent.addParameter(name, value);
  26. }
  27. return EVAL_PAGE;
  28. }

代码示例来源:origin: org.glassfish.web/jstl-impl

  1. if (c == ' ') {
  2. out.append('+');
  3. } else if (isSafeChar(c)) {
  4. out.append((char)c);
  5. } else {

代码示例来源:origin: org.jboss.spec.javax.servlet.jstl/jboss-jstl-api_1.2_spec

  1. private static Locale findFormattingMatch(PageContext pageContext,
  2. Locale[] avail) {
  3. Locale match = null;
  4. for (Enumeration enum_ = Util.getRequestLocales((HttpServletRequest) pageContext.getRequest());
  5. enum_.hasMoreElements();) {
  6. Locale locale = (Locale) enum_.nextElement();
  7. match = findFormattingMatch(locale, avail);
  8. if (match != null) {
  9. break;
  10. }
  11. }
  12. return match;
  13. }

代码示例来源:origin: org.glassfish.web/jstl-impl

  1. private DateFormat createFormatter(Locale loc) throws JspException {
  2. DateFormat formatter = null;
  3. if ((type == null) || DATE.equalsIgnoreCase(type)) {
  4. formatter = DateFormat.getDateInstance(
  5. Util.getStyle(dateStyle, "FORMAT_DATE_INVALID_DATE_STYLE"),
  6. loc);
  7. } else if (TIME.equalsIgnoreCase(type)) {
  8. formatter = DateFormat.getTimeInstance(
  9. Util.getStyle(timeStyle, "FORMAT_DATE_INVALID_TIME_STYLE"),
  10. loc);
  11. } else if (DATETIME.equalsIgnoreCase(type)) {
  12. formatter = DateFormat.getDateTimeInstance(
  13. Util.getStyle(dateStyle, "FORMAT_DATE_INVALID_DATE_STYLE"),
  14. Util.getStyle(timeStyle, "FORMAT_DATE_INVALID_TIME_STYLE"),
  15. loc);
  16. } else {
  17. throw new JspException(
  18. Resources.getMessage("FORMAT_DATE_INVALID_TYPE",
  19. type));
  20. }
  21. return formatter;
  22. }
  23. }

代码示例来源:origin: org.glassfish.web/javax.servlet.jsp.jstl

  1. charSet = Util.getContentTypeAttribute(contentType, "charset");
  2. if (charSet == null) charSet = DEFAULT_ENCODING;
  3. } else {

代码示例来源:origin: org.bluestemsoftware.open.maven.tparty/jsp-api-2.1

  1. public int doEndTag() throws JspException {
  2. Tag t = findAncestorWithClass(this, ParamParent.class);
  3. if (t == null)
  4. throw new JspTagException(
  5. Resources.getMessage("PARAM_OUTSIDE_PARENT"));
  6. // take no action for null or empty names
  7. if (name == null || name.equals(""))
  8. return EVAL_PAGE;
  9. // send the parameter to the appropriate ancestor
  10. ParamParent parent = (ParamParent) t;
  11. String value = this.value;
  12. if (value == null) {
  13. if (bodyContent == null || bodyContent.getString() == null)
  14. value = "";
  15. else
  16. value = bodyContent.getString().trim();
  17. }
  18. if (encode) {
  19. // FIXME: revert to java.net.URLEncoder.encode(s, enc) once
  20. // we have a dependency on J2SE 1.4+.
  21. String enc = pageContext.getResponse().getCharacterEncoding();
  22. parent.addParameter(
  23. Util.URLEncode(name, enc), Util.URLEncode(value, enc));
  24. } else {
  25. parent.addParameter(name, value);
  26. }
  27. return EVAL_PAGE;
  28. }

代码示例来源:origin: javax.servlet/com.springsource.javax.servlet.jsp.jstl

  1. if (c == ' ') {
  2. out.append('+');
  3. } else if (isSafeChar(c)) {
  4. out.append((char)c);
  5. } else {

代码示例来源:origin: org.glassfish.web/jstl-impl

  1. /**
  2. * Setter method for the scope of the variable to hold the
  3. * result.
  4. */
  5. public void setScope(String scopeName) {
  6. scope = Util.getScope(scopeName);
  7. }

代码示例来源:origin: org.apache.taglibs/taglibs-standard-impl

  1. private static Locale findFormattingMatch(PageContext pageContext,
  2. Locale[] avail) {
  3. Locale match = null;
  4. for (Enumeration enum_ = Util.getRequestLocales((HttpServletRequest) pageContext.getRequest());
  5. enum_.hasMoreElements();) {
  6. Locale locale = (Locale) enum_.nextElement();
  7. match = findFormattingMatch(locale, avail);
  8. if (match != null) {
  9. break;
  10. }
  11. }
  12. return match;
  13. }

代码示例来源:origin: org.apache.taglibs/taglibs-standard-impl

  1. private DateFormat createFormatter(Locale loc, String pattern) throws JspException {
  2. // Apply pattern, if present
  3. if (pattern != null) {
  4. return new SimpleDateFormat(pattern, loc);
  5. }
  6. if ((type == null) || DATE.equalsIgnoreCase(type)) {
  7. int style = Util.getStyle(dateStyle, "FORMAT_DATE_INVALID_DATE_STYLE");
  8. return DateFormat.getDateInstance(style, loc);
  9. } else if (TIME.equalsIgnoreCase(type)) {
  10. int style = Util.getStyle(timeStyle, "FORMAT_DATE_INVALID_TIME_STYLE");
  11. return DateFormat.getTimeInstance(style, loc);
  12. } else if (DATETIME.equalsIgnoreCase(type)) {
  13. int style1 = Util.getStyle(dateStyle, "FORMAT_DATE_INVALID_DATE_STYLE");
  14. int style2 = Util.getStyle(timeStyle, "FORMAT_DATE_INVALID_TIME_STYLE");
  15. return DateFormat.getDateTimeInstance(style1, style2, loc);
  16. } else {
  17. throw new JspException(Resources.getMessage("FORMAT_DATE_INVALID_TYPE", type));
  18. }
  19. }
  20. }

代码示例来源:origin: javax.servlet/com.springsource.javax.servlet.jsp.jstl

  1. charSet = Util.getContentTypeAttribute(contentType, "charset");
  2. if (charSet == null) charSet = DEFAULT_ENCODING;
  3. } else {

代码示例来源:origin: org.eclipse.jetty.orbit/org.apache.taglibs.standard.glassfish

  1. public static String escapeXml(String input) {
  2. if (input == null) return "";
  3. return Util.escapeXml(input);
  4. }

代码示例来源:origin: org.glassfish.web/javax.servlet.jsp.jstl

  1. public int doEndTag() throws JspException {
  2. Tag t = findAncestorWithClass(this, ParamParent.class);
  3. if (t == null)
  4. throw new JspTagException(
  5. Resources.getMessage("PARAM_OUTSIDE_PARENT"));
  6. // take no action for null or empty names
  7. if (name == null || name.equals(""))
  8. return EVAL_PAGE;
  9. // send the parameter to the appropriate ancestor
  10. ParamParent parent = (ParamParent) t;
  11. String value = this.value;
  12. if (value == null) {
  13. if (bodyContent == null || bodyContent.getString() == null)
  14. value = "";
  15. else
  16. value = bodyContent.getString().trim();
  17. }
  18. if (encode) {
  19. // FIXME: revert to java.net.URLEncoder.encode(s, enc) once
  20. // we have a dependency on J2SE 1.4+.
  21. String enc = pageContext.getResponse().getCharacterEncoding();
  22. parent.addParameter(
  23. Util.URLEncode(name, enc), Util.URLEncode(value, enc));
  24. } else {
  25. parent.addParameter(name, value);
  26. }
  27. return EVAL_PAGE;
  28. }

代码示例来源:origin: org.apache.taglibs/com.springsource.org.apache.taglibs.standard

  1. if (c == ' ') {
  2. out.append('+');
  3. } else if (isSafeChar(c)) {
  4. out.append((char)c);
  5. } else {

代码示例来源:origin: org.apache.taglibs/taglibs-standard-impl

  1. /**
  2. * Setter method for the scope of the variable to hold the
  3. * result.
  4. */
  5. public void setScope(String scope) {
  6. this.scope = Util.getScope(scope);
  7. }

相关文章