response.jsp

来自「java 的关于web serive教程」· JSP 代码 · 共 27 行

JSP
27
字号
<%@ page import="helloservice.endpoint.HelloService,helloservice.endpoint.Hello" %><%      String resp = null;    try {      Hello hello = new HelloService().getHelloPort();      resp = hello.sayHello(request.getParameter("username"));    } catch (Exception ex) {        resp = ex.toString();    }%><h2><font color="black"><%=resp%></font></h2>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?