out.println()不能工作

来源:2-8 JSP声明

哈娃娃

2017-04-19 10:14

请问out是哪个包下的对象???

写回答 关注

2回答

  • qq_宸子_04228031
    2017-04-19 11:43:45

    脚本调用不需要 =

  • LeoSorn
    2017-04-19 11:41:21

    这个直接工作实在<%%>中 是一个脚本,如果在<%! %>这个中需要传递脚本参数

    <%!

    void printMultiTable2(JspWriter out) throws IOException {

    for (int i = 1; i <= 9; i++) {

    for (int j = 1; j <= i; j++) {

    out.print(i + "*" + j + "=" + i * j

    + "&nbsp;&nbsp;&nbsp;&nbsp;");

    }

    out.println("<br>");

    }

    }

    %>

    这样就可以工作了

    LeoSor...

    外部调用<%printMultiTable2(out); %>用脚本的方式调用它

    2017-04-19 11:42:36

    共 1 条回复 >

JAVA遇见HTML——JSP篇

Java Web入门级教程JSP,带你轻松的学习JSP基础知识

248277 学习 · 3071 问题

查看课程

相似问题