从java调用jsp或javascript

时间:2012-06-20 04:28:28

标签: java jsp

是否可以从Java调用JSP页面(我在Java中编写的方法不在jsp上)?我想做点什么......

public void testmethod(){

  if(somecondtion){
    show some messege to the user.
 }  


} 

3 个答案:

答案 0 :(得分:1)

如果你的java代码在客户端,你可以使用Url类命中服务器,如下所示

URL url = new URL("http://www.xyz.com/xyz.jsp");//i.e your Url
URLConnection conn = url.openConnection();
conn.connect();

更好地参考http://docs.oracle.com/javase/1.4.2/docs/api/java/net/URL.html以更好地使用Url类方法

答案 1 :(得分:0)

听说过servlet? This问题实际上是重复的,你可以在搜索时找到它。

答案 2 :(得分:0)