forked from demo/example
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
796 B
34 lines
796 B
4 years ago
|
package com.fr.demo;
|
||
|
|
||
|
import java.util.Map;
|
||
|
import javax.servlet.http.HttpServletRequest;
|
||
|
|
||
|
import com.fr.form.main.Form;
|
||
|
import com.fr.form.main.FormIO;
|
||
|
import com.fr.web.weblet.Formlet;
|
||
|
|
||
|
|
||
|
public class SimpleReportletDemoFrm extends Formlet {
|
||
|
|
||
|
@SuppressWarnings("rawtypes")
|
||
|
@Override
|
||
|
public void setParameterMap(Map arg0) {
|
||
|
// TODO Auto-generated method stub
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected Form createForm(HttpServletRequest request) throws Exception {
|
||
|
Form form = null;
|
||
|
//模板的相对路径
|
||
|
String tplPath = "//doc//frm//决策报表入门.frm";
|
||
|
this.setTplPath(tplPath);
|
||
|
try {
|
||
|
form = FormIO.readForm(tplPath);
|
||
|
} catch (Exception e) {
|
||
|
e.printStackTrace();
|
||
|
}
|
||
|
return form;
|
||
|
}
|
||
|
|
||
|
}
|