📄 uploadform.java
字号:
package formbean;
import org.apache.struts.upload.FormFile;
import org.apache.struts.action.ActionForm;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 2006-6-23
* Time: 9:56:38
* To change this template use File | Settings | File Templates.
*/
public class UploadForm extends ActionForm {
public void setPic(FormFile pic) {
this.pic = pic;
}
public FormFile getPic() {
return pic;
}
public String getName() {
return name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public void setName(String name) {
this.name = name;
}
public String getPictype() {
return pictype;
}
public void setPictype(String pictype) {
this.pictype = pictype;
}
private String name=null;
private FormFile pic = null;
private String pictype = null;
private String description = null;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -