`
qhhhn
  • 浏览: 33282 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表

MD5加密

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 ...
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控制面板中& ...
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 ...
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 ...
正常情况下(要求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 ) ...
简单使用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 ...
web.xml配置如下: <!-- proxool 配置档 --> <servlet> <servlet-name>proxoolServletConfigurator</servlet-name> <servlet-class> org.logicalcobwebs.proxool.configuration.ServletConfigurator </servlet-class> <init-param> <param-name>xmlFile&l ...
准备: 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"); ...
在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" ...
jsp出现乱码的情况有很多,但是阁下的问题倒是第一次听说,下面是我借鉴了别人的一些方法,希望对你有所帮助。 转至:热带网海 1,最基本的乱码问题。 这个乱码问题是最简单的乱码问题。一般新会出现。就是页面编码不 ...
利用序列化与反序列化对对象进行深度复制 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; / ...
Global site tag (gtag.js) - Google Analytics