📄 helloworld1.jsp
字号:
<html>
<!--
-->
<%@ page session="false"%>
<%@ page import="Jt.*" %>
<body bgcolor="white">
<!-- HelloWorld.jsp - Example of JSP support -->
<!- Create an instance of HelloWorld -->
<%
JtFactory main = new JtFactory (); // Create the factory class
// Create the instance of the Jt objects
JtObject helloWorld = (JtObject) main.createObject ("Jt.examples.HelloWorld", "helloWorld");
Object jtReply = main.sendMessage (helloWorld, new JtMessage ("JtHELLO"));
%>
<!-- Send a message to the object and print the reply -->
<%= jtReply %>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -