- 浏览: 61470 次
- 性别:
- 来自: 长沙
最新评论
-
楚之异人:
sql语句不用写在Dao类里面吗?
DAO层调用数据库的公用方法 -
aiyalhw:
I2000告警
1.功能介绍
现在I2000告警与短信告警公用 ...
系统告警 -
aiyalhw:
给httpd加上运行参数:-Xdebug -Xnoagent ...
resin debug -
aiyalhw:
http://yuan.iteye.com/blog/2256 ...
resin debug -
aiyalhw:
本文介绍如何在Resin中调试Web应用程序。测试环境为Win ...
resin debug
文章列表
iframe 主页面定义一个全局变量
var win =null
子窗口中调用这个变量
function goToHelpPage(flag) { if (window.parent.win != null && !window.parent.win.closed) { window.parent.win.top.close(); } if(flag==1 || event.keyCode == 112){ window.parent.win = wi ...
原文地址
http://www.blogjava.net/Reg/archive/2009/11/20/303040.html
方法1(数据类型)(最小值+Math.random()*(最大值-最小值+1))例:(int)(1+Math.random()*(10-1+1))从1到10的int型随数
方法2获得随机数for (int i=0;i<30;i++){System.out.println((int)(1+Math.random()*10));}(int)(1+Math.random()*10)通过java.Math包的random方法得到1-10的int随机数 ...
//IP 验证function isIP(value) { var re=/^(\d+)\.(\d+)\.(\d+)\.(\d+)$/; //匹配IP地址的正则表达式 if(re.test(value)) { if( RegExp.$1 <256 && RegExp.$2<256 && RegExp.$3<256 && RegExp.$4<256) return true; } return false; }
//验证数字
va ...
只能输入汉字:<input onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))">
只能输入数字:<input onkeyup="value=value.replace(/[^\d]/g,'') "onbeforepaste="clipboa ...
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><%@ include file="/common/taglibs.jsp" %><%@ taglib uri="/struts-tags" prefix="s"%><link href="${ctx }/css/style_mmsc.css" ...
###########windows###########F:\iSAP\bin>SQLPLUS /NOLOG
SQL*Plus: Release 9.2.0.1.0 - Production on 星期四 12月 10 10:49:56 2009
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
SQL> CONN SYS/ADMIN@ORA9I_TANGYQ.CHINA.HUAWEI.COMERROR:ORA-28009: connection to sys should be as sy ...
<html><head><title>测试短信专家系统的WebService服务</title><STYLE type="text/css">p,div,a { marign: 0px; padding: 0px; font-size: 12px; font-family: "Tahoma", "Arial", "";}
table,td { marign: 0px; padding: 0px; font-size: 12px; font-family: ...
安装JDKrpm -ivh ibm-java2-i386-sdk-5.0-8.0.i386.rpm
要用root用户来按照不然会出现如下错误:
error: db4 error(2) from dbenv->open: No such file or directory error: cannot open Packages index using db3 - No such file or directory (2) error: cannot open Packages database in /var/lib/rpm
在ROOT应用的index.jsp中加入下面这段代码即可!
<%@ page import="java.net.HttpURLConnection, java.net.URL, javax.net.ssl.*, java.security.*" %>
<%
String requestedURL = request.getRequestURL().toString(); int responseCode = -1; String fileName = null; URL url = new URL(requestedURL+"/admin& ...
public static void main(String[] args) { getWebServiceResult(); }
public static void getWebServiceResult() { try { //http://localhost:8089/services/SmsInterfaceService?wsdl String url = "http://localhost:8089/services/SmsInterfaceService?wsdl"; // 向webService地址发起请求 co ...
最近看了一篇文章关于说编码问题
表单按get或post提交中文得到的是乱码问题。
由于在JSP中使用了GBK作用页面的编码,那么提交的中文信息自然也会被按着GBK进行编码,为%xx格式的GBK编码。
request.setCharacterEncoding方法设置编码格式,如下面的代码所示:
request.setCharacterEncoding("GBK");
在设置完编码格式之后,就可以直接通过request.getParameter方法来获得请求参数中的中文信息了。当然,为了方便,还可以在过滤器中加入上面的语句,这样所有的Servlet都可以直接使用 requ ...
public static String substring(String s , int length) throws Exception
{
byte[] bytes = s.getBytes("Unicode");
int n = 0; // 表示当前的字节数
int i = 2; // 要截取的字节数,从第3个字节开始
for (; i < bytes.length && n < length; i++){
// 奇数位置,如3、5、7等,为UCS2编码中两个字节的第二个字节
if (i % 2 == 1 ...
windows cdkey
WindowsXP可以无限次激活的号码:CXGDD-GP2B2-RKWWD-HG3HY-VDJ7J或者RK7J8-2PGYQ-P47VV-V6PMB-F6XPQ
WindowsXP 2520 Pro 英文版--60天免激活序列号:RK7J8-2PGYQ-P47VV-V6PMB-F6XPQ
Windows XP 2505 RC1--序列号:DTWB2-VX8WY-FG8R3-X696T-66Y46 Q3R8Y-MP9KD-3M6KB-383YB-7PK9Q 411Y0-URB45-34R3B-310N6-70U51 F0R6R-347JU-57IC3-M0V34- ...
http://www.blogjava.net/nokiaguy/category/38172.html
今天发现存入数据库的中文占三个字节
原来是用的编码不同数据库是用的AL32UTF8的编码
我们正常存入中文的是ZHS16GBK编码
查询编码的语句是:
select parameter,value from nls_database_parameters where parameter like 'NLS_CHARACTERSET';