我在jsp中做项目,我需要调用外部类的一些方法,并且必须由jsp接收来自该方法的结果以进行进一步处理。返回的结果是图像形式。
例如,
Key=Crypting.KeyGen(width,height);
Encrypt=Crypting.Encrypt(Key,Src);
我的疑问是,这是调用外部方法的正确方法吗?
答案 0 :(得分:0)
尝试以下代码......
示例代码
在课程文件中,方法应为public
//Here Test class inside com.example packege
package com.example;
public class Test {
public static String displayInfo(){
return "This is Display Method...";
}
}
在JSP文件中,您需要分别导入包类。
// JSP File and here calling Test Class displayInfo() Static method
<%@page import="com.example.Test"%>
<html>
<body>
<h1>Hello World!!!</h1>
<%
out.print("welcome to jsp "+Test.displayInfo());
%>
</body>
</html>
希望它能帮到你......