当前位置: 技术问答>java相关
jsp页面中不能使用System.out.println?
来源: 互联网 发布时间:2015-06-16
本文导语: 在jsp中直接写System.out.println语句,好像什么也不会print出来,什么原因? 现在我要使用javabean,用递归算法解hanoi问题,但现在System.out.println出来什么也看不到,如何解决呀???不会要我把结果拼成一个长string返回...
在jsp中直接写System.out.println语句,好像什么也不会print出来,什么原因?
现在我要使用javabean,用递归算法解hanoi问题,但现在System.out.println出来什么也看不到,如何解决呀???不会要我把结果拼成一个长string返回吧?好痛苦
现在我要使用javabean,用递归算法解hanoi问题,但现在System.out.println出来什么也看不到,如何解决呀???不会要我把结果拼成一个长string返回吧?好痛苦
|
try:
public void showHtml(HttpServletRequest request,HttpServletResponse response) throws IOException
{
PrintWriter out = response.getWriter();
out.println("");
out.println("aaaaaaaaaaaa");
}
public void showHtml(HttpServletRequest request,HttpServletResponse response) throws IOException
{
PrintWriter out = response.getWriter();
out.println("");
out.println("aaaaaaaaaaaa");
}
|
这个问题回答过一次了,在javaBean里定义一个String就可以了呀?
public int nFlag;//是否出错标志
public String strErrorInfo;//错误信息
catch(Exception e){
nFlag=-1;
strErrorInfo=e.getMessage();
}
然后在网页上就通过访问nFlag确认操作是否正确;然后输出错误信息strErrorInfo..
public int nFlag;//是否出错标志
public String strErrorInfo;//错误信息
catch(Exception e){
nFlag=-1;
strErrorInfo=e.getMessage();
}
然后在网页上就通过访问nFlag确认操作是否正确;然后输出错误信息strErrorInfo..
|
public void showHtml(HttpServletRequest request,HttpServletResponse response,String message) throws IOException
{
PrintWriter out = response.getWriter();
out.println(message);
}
应该可以的
{
PrintWriter out = response.getWriter();
out.println(message);
}
应该可以的
|
showHtml(HttpServletRequest request,HttpServletResponse response,String message) 中三个参数,你调用时候给了一个参数,能行吗?
|
在jsp 页面中加入这样的语句就可以的