⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fmt.tld

📁 用j2ee开发的b/s通讯录. 欢迎各位使用
💻 TLD
📖 第 1 页 / 共 2 页
字号:
    </attribute>    <attribute>        <description>Specifies whether the formatted outputwill contain any grouping separators.        </description>        <name>groupingUsed</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Maximum number of digits in the integerportion of the formatted output.        </description>        <name>maxIntegerDigits</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Minimum number of digits in the integerportion of the formatted output.        </description>        <name>minIntegerDigits</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Maximum number of digits in thefractional portion of the formatted output.        </description>        <name>maxFractionDigits</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Minimum number of digits in thefractional portion of the formatted output.        </description>        <name>minFractionDigits</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Name of the exported scoped variablewhich stores the formatted result as aString.        </description>        <name>var</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Scope of var.        </description>        <name>scope</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>  </tag>  <tag>    <description>        Parses the string representation of a number, currency, or percentage    </description>    <name>parseNumber</name>    <tag-class>org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag</tag-class>    <body-content>JSP</body-content>    <attribute>        <description>String to be parsed.        </description>        <name>value</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Specifies whether the string in the valueattribute should be parsed as a number,currency, or percentage.        </description>        <name>type</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Custom formatting pattern that determineshow the string in the value attribute is to beparsed.        </description>        <name>pattern</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Locale whose default formatting pattern (fornumbers, currencies, or percentages,respectively) is to be used during the parseoperation, or to which the pattern specifiedvia the pattern attribute (if present) isapplied.        </description>        <name>parseLocale</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Specifies whether just the integer portion ofthe given value should be parsed.        </description>        <name>integerOnly</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Name of the exported scoped variable whichstores the parsed result (of typejava.lang.Number).        </description>        <name>var</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Scope of var.        </description>        <name>scope</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>  </tag>  <tag>    <description>        Formats a date and/or time using the supplied styles and pattern    </description>    <name>formatDate</name>    <tag-class>org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag</tag-class>    <body-content>empty</body-content>    <attribute>        <description>Date and/or time to be formatted.        </description>        <name>value</name>        <required>true</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Specifies whether the time, the date, or boththe time and date components of the givendate are to be formatted.         </description>        <name>type</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Predefined formatting style for dates. Followsthe semantics defined in classjava.text.DateFormat. Applied onlywhen formatting a date or both a date andtime (i.e. if type is missing or is equal to"date" or "both"); ignored otherwise.        </description>        <name>dateStyle</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Predefined formatting style for times. Followsthe semantics defined in classjava.text.DateFormat. Applied onlywhen formatting a time or both a date andtime (i.e. if type is equal to "time" or "both");ignored otherwise.        </description>        <name>timeStyle</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Custom formatting style for dates and times.        </description>        <name>pattern</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Time zone in which to represent the formattedtime.        </description>        <name>timeZone</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Name of the exported scoped variable whichstores the formatted result as a String.        </description>        <name>var</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Scope of var.        </description>        <name>scope</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>  </tag>  <tag>    <description>        Parses the string representation of a date and/or time    </description>    <name>parseDate</name>    <tag-class>org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag</tag-class>    <body-content>JSP</body-content>    <attribute>        <description>Date string to be parsed.        </description>        <name>value</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Specifies whether the date string in thevalue attribute is supposed to contain atime, a date, or both.        </description>        <name>type</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Predefined formatting style for dayswhich determines how the datecomponent of the date string is to beparsed. Applied only when formatting adate or both a date and time (i.e. if typeis missing or is equal to "date" or "both");ignored otherwise.        </description>        <name>dateStyle</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Predefined formatting styles for timeswhich determines how the timecomponent in the date string is to beparsed. Applied only when formatting atime or both a date and time (i.e. if typeis equal to "time" or "both"); ignoredotherwise.        </description>        <name>timeStyle</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Custom formatting pattern whichdetermines how the date string is to beparsed.        </description>        <name>pattern</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Time zone in which to interpret any timeinformation in the date string.        </description>        <name>timeZone</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Locale whose predefined formatting stylesfor dates and times are to be used duringthe parse operation, or to which thepattern specified via the patternattribute (if present) is applied.        </description>        <name>parseLocale</name>        <required>false</required>        <rtexprvalue>true</rtexprvalue>    </attribute>    <attribute>        <description>Name of the exported scoped variable inwhich the parsing result (of typejava.util.Date) is stored.        </description>        <name>var</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>    <attribute>        <description>Scope of var.        </description>        <name>scope</name>        <required>false</required>        <rtexprvalue>false</rtexprvalue>    </attribute>  </tag></taglib>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -