📄 fileformtag.java
字号:
/* * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: FileFormTag.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.provider.portletui.tags;import javax.servlet.jsp.JspException;/** * A <code>FileFormTag</code> represents a specialized <code>ActionFormTag</code> to be used for uploading files using * a <code>FileInputTag</code> */public class FileFormTag extends ActionFormTag { public int doStartTag() throws JspException { this.isMultipart = true; return super.doStartTag(); } public int doEndTag() throws JspException { return super.doEndTag(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -