用JAVA编写的函数
1 package doc; //定义一个包 2 public class Dy { //定义一个类 3 public static int Sub(int x,int y){ //定义函数Sub()为静态函数 4 return x-y; 5 } 6 }
JSP页面进行调用
首先引入要用到的类
<%@ page import="doc.*"%> //引入所需要的函数所在的包,如果没有导入使用包,系统则认为所引用的类与当前类在同一个包中
接着在<body></body>中写入代码
1 <% 2 int a=5; 3 int b=4; 4 int result=0; 5 %> 6 <% 7 result=Dy.Sub(a, b); //调用定义的方法 8 System.out.println(result); 9 %> 10 <%=result %>
运行JSP页面
在浏览器地址栏输入 http://localhost:8080/Test/index.jsp
页面显示结果
1
函数调用成功!
PS:函数调用方法:类名.函数名()