你应该是新手,还不明白概念,所以在网上找些视频教程看吧,搜索j2ee或者jsp的教程,jsp就是用java程序动态生成html页面,浏览器不能解析java代码,所以tomcat这种服务器负责解析,生成最终的html
把他当成字符串直接用流输出出来就好了HttpServletResponse response;//具体怎么得到这个对象的你应该知道吧
response.setCharacterEncoding("utf-8")
response.setContentType("text/html")
PrintWriter writer =response.getWriter()
writer.write("<a>注册成功</a>")//就如这样把你要的html代码写进去就行了
//
//最后记得这一下
writer.flush()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)