各位好!本人刚开始学jsp遇到一道题不会做,望指点
问一下第二题咋做啊! 解决方案 30 public static void main(String[] args){ int[] moneyArr = {100,50,20,10,5,1}; int myMoney = 78; for(int i=0;i<moneyArr.length;i++){ if(myMoney>=……
new Thread(Runnable target) 中target必须是匿名内部类吗
package test; public class test { public static void main(String[] args) { Thread thread = new Thread(TThread); System.out.println("The END !!!!"); System.exit(0); } } ……
servlet怎么样发送数据,给Android ?是不是使用 response.getWriter().wri
servlet怎么样发送数据,给Android ?是不是使用 response.getWriter().write ? 具体的使用方式是什么呢 ? 解决方案 20 用http的post方法,解析request对象得到前端发送过来的数据,填充response对象返回给前端数据 20 不要想客户端是什么,android也是一种客户端,你怎么给浏览器发送的就怎么发……
static的定义和没有static 的 定义有什么不同
static的定义和没有static 的 定义有什么不同? 解决方案 10 static 相当与全局变量 一开始运行程序就会 被创建 非static的成员变量 只有在实例化类的时候才会被创建 10 static 变量属于整个类的,每一个类的实例都共享这个变量的值。 非static 变量属于这个类的每一个实例,每一个实例可以设定这个变量不同的值 10 涉及到……
shiroFilter路径问题
这是本人的shiroFilter配置: <bean id=”securityManager” class=”org.apache.shiro.web.mgt.DefaultWebSecurityManager”> <property name=”realm” ref=&……
java 中findForResultSet 什么意思
public static boolean getLogin(String name,String password) throws SQLException{ ResultSet rs=findForResultSet(“select * from tb_userlist where name=””+name +R……