本文主要是介绍java小程序!,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
//查询学生的分数
public String queryScores(){
……
……
}
public Student getStudentScores() {
return studentScores;
}
public void setStudentScores(Student studentScores) {
this.studentScores = studentScores;
}
}
然后写上面的jsp页代码的时候就可以像下面一样了,代码少了一些:
<DIV class=unit>
<LABEL>学生姓名:</LABEL>
<INPUT class=required value=${stuName} maxLength=20 size=30 name=stuName>
</DIV>
<DIV class=unit>
<LABEL>考试名称:</LABEL>
<INPUT class=required value=${examName} maxLength=20 size=30 name=examName>
</DIV>
<DIV class=unit>
<LABEL>考试分数:</LABEL>
<INPUT class=required value=${score} maxLength=20 size=30 name=score>
</DIV>
这篇关于java小程序!的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!