tomcat环境下jsp编译错误,求解! - Java / Web 开发
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 52 in the jsp file: /vip_info.jsp
ÕË cannot be resolved
49: <table border="1">
50: <caption>个人信息</caption>
51:
52: <%
53: try{
54: Class.forName("com.mysql.jdbc.Driver").newInstance();
55:
An error occurred at line: 52 in the jsp file: /vip_info.jsp
Syntax error on tokens, delete these tokens
49: <table border="1">
50: <caption>个人信息</caption>
51:
52: <%
53: try{
54: Class.forName("com.mysql.jdbc.Driver").newInstance();
55:
An error occurred at line: 52 in the jsp file: /vip_info.jsp
ÐÕÃû£º cannot be resolved
49: <table border="1">
50: <caption>个人信息</caption>
51:
52: <%
53: try{
54: Class.forName("com.mysql.jdbc.Driver").newInstance();
55:
An error occurred at line: 52 in the jsp file: /vip_info.jsp
ÐÔ.𣺠cannot be resolved to a type
49: <table border="1">
50: <caption>个人信息</caption>
51:
52: <%
53: try{
54: Class.forName("com.mysql.jdbc.Driver").newInstance();
5
相关问答:
一个JSP页面接收其他页面提交过来的FORM表单,但是要求只接收当前站点及其子站点提交过来的FORM表单,其他站点提交过来的表单不接收,这个怎么设置?
用过滤器
filter
将当前站点及其子站点放一个目录
然 ......
如题,C/C++中的execl怎么调用写好的java程序,
execl("/opt/java1.5/bin/java","MyClass",NULL);
这样的不行哦。
不会.
运行java程序
找工具查看一下那个程序的命令行
搜索下:jni ......
在asp里怎么调用java写的webservice方法,有很多方法
- <message name="RtPnrIn">
<part name="bstrPnrNO" type="s:string" />
<part name ......
我是个新手,做一个JSP网页,我要读出数据库正常,但是我要修改的时候,也就是读入的时候出现乱码,请高手告诉我怎么解决,先谢谢了。
request.setCharacterEncoding("UTF-8");
把编码统一
/**
......
题目:
有1,2,3,4,5,6六个数字排序,用java程序计算出排序的种类。
要求:一,以4开头
二,2,3不能相邻
三,不能以5开头
希望大家能即 ......