- 浏览: 33282 次
- 性别:
- 来自: 广州
最新评论
-
李俊林:
id1+id2有点问题吧
SQLServer 分页(联合主键) -
chourayi1021:
eclipse\eclipse.ini中没有-Duser.la ...
myeclipse连接oracle出现ora-12705错误的解决办法 -
liaoshaoyao:
太感谢了, 但是我之前用的MyEclipse5.5就没碰 ...
myeclipse连接oracle出现ora-12705错误的解决办法 -
ahfang09:
楼主,太感谢你了。查了好多资料,你这个方法是最明了最好使的。
myeclipse连接oracle出现ora-12705错误的解决办法 -
qhhhn:
wenbois2000 写道好! 解决我的问题了 多谢啊 不知 ...
myeclipse连接oracle出现ora-12705错误的解决办法
文章列表
import java.io.PrintStream;
import java.lang.reflect.Array;
public class MD5 {
public long[] state;
public long[] count;
public byte[] buffer;
public byte[] digest;
public final byte PADDING[] = { -128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ...
- 2009-05-12 11:21
- 浏览 841
- 评论(0)
myeclipse连接oracle出现ora-12705错误的解决办法:
MyEclipse DB Brower建立oracle数据库连接的时候,报出下面的错误.
java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1
java.sql.SQLException: ORA-12705: invalid or unknown NLS parameter value specified
修改eclipse\eclipse.ini中的-Duser.language=*保持与windows XP控制面板中& ...
- 2009-05-12 11:11
- 浏览 2595
- 评论(5)
1. 编码解决:
-encoding UTF-8 -charset UTF-8
//encoding指定从java文件中读的编码方式
//charset指定写到HTML中charset的值
//< META http-equiv ="Content-Type" content ="text/html; charset=utf-8" >
2.java.util.MissingResourceException异常
在生成HTML时出现以下异常:
java.util.MissingResourceException: Can't find ...
- 2009-05-07 11:30
- 浏览 2143
- 评论(0)
1. 下载配置XmlBeans
a. 下载XmlBeans,假定下载到C:\xmlbeans-2.3.0
b. 设置环境变量XMLBEANS_HOME= C:\xmlbeans-2.3.0
c. 在path中加入%XMLBEANS_HOME%\bin
2. 生成Schema文件test.xsd
利用scomp来生成Java Classes
scomp是XMLBean提供的一个编译工具,它在bin的目录下. 通过这个工具,
我们可以将以上的Schema文件生成Java Classes.
scomp的语法如下:-
scomp [op ...
- 2009-03-31 14:37
- 浏览 5017
- 评论(0)
正常情况下(要求not in字段唯一)
select top pageSize * form table where id not in
(select top pageSize*page-pageSize id from table order by id)order by id
或
select * from(
select top pageSize * from(
select top pageSize*page * from table
where ... order by id ASC
) as t1 order by id DESC
) ...
- 2009-03-26 10:18
- 浏览 3241
- 评论(1)
简单使用proxool数据源参考:http://qhhhn.iteye.com/admin/blogs/294039
Tomcat 6中proxool+jndi的配置:
tomcat\conf\context.xml
<Context>
<Resource name="jdbc/mysql"
auth="Container"
type="javax.sql.DataSource"
factory="org.logicalcobwebs.proxool.Pr ...
- 2009-02-09 14:50
- 浏览 5254
- 评论(0)
web.xml配置如下:
<!-- proxool 配置档 -->
<servlet>
<servlet-name>proxoolServletConfigurator</servlet-name>
<servlet-class>
org.logicalcobwebs.proxool.configuration.ServletConfigurator
</servlet-class>
<init-param>
<param-name>xmlFile&l ...
- 2008-12-15 15:10
- 浏览 2022
- 评论(0)
准备: commons-fileupload-1.2.1.jar和commons-io-1.4.jar
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//System.out.println(request.getParameter("test"));
request.setCharacterEncoding("utf-8"); ...
- 2008-10-07 16:20
- 浏览 6381
- 评论(0)
在tomcat\conf\server.xml的<Host>中添加:
5.5.*版本:
<Context path="/Test">
<Resource
name="jdbc/test"
type="javax.sql.DataSource"
password="password"
driverClassName="com.mysql.jdbc.Driver"
maxIdle="2"
...
- 2008-07-08 11:11
- 浏览 1066
- 评论(0)
jsp出现乱码的情况有很多,但是阁下的问题倒是第一次听说,下面是我借鉴了别人的一些方法,希望对你有所帮助。
转至:热带网海
1,最基本的乱码问题。
这个乱码问题是最简单的乱码问题。一般新会出现。就是页面编码不 ...
- 2008-05-08 10:28
- 浏览 1266
- 评论(0)
利用序列化与反序列化对对象进行深度复制
public class Student implements Serializable {
private String name;
private String tel;
private int age;
//set and get.....
}
public class Teacher implements Serializable {
private String name;
private int age;
private List<Student> stuList;
/ ...
- 2008-05-04 20:09
- 浏览 3456
- 评论(0)