- 浏览: 876336 次
- 性别:
- 来自: 广州
最新评论
-
hjl416148489:
jbox演示DEMO和下载:http://www.sucaih ...
Jbox学习 -
caipeiming:
这里有个例子Java给图片加上水印并设置透明度和位置
java处理图片添加水印 -
Juveniless:
谢谢分享
CXF整合Spring之JaxWsProxyFactoryBean调用 -
springaop_springmvc:
可以参考最新的文档:如何在eclipse jee中检出项目并转 ...
eclipse maven plugin 插件 安装 和 配置 -
JavaSon_caibi:
public ParameterRequestWrapper( ...
java修改请求参数的值
文章列表
google 的图片搜索就是拿这个做的啊
http://code.google.com/p/tesseract-ocr/
example
http://blog.csdn.net/foamflower/article/details/6110211
http://blog.csdn.net/zhoushuyan/article/details/5948289#1567946
select decode(1,2,3,11,4,15,11,14,19,17) tt from dual;
if 1=2 then
3
elsif 1=11 then
4
elsif 1=15 then
11
elsif 1=14 then
19
elsif 1=17 then
17
endif;
select decode(1,2,3,11,4,15,11,14,19,1,2,4) tt from dual;
if 1=2 then
3
elsif 1=11 then
4
elsif 1=15 the ...
1.修改tomcat服务器显示名
1) 编辑 D:\tomcat-6.0.0\bin\catalina.bat 文件
2) 找到这一段
if not "%OS%" == "Windows_NT" goto noTitle
set _EXECJAVA=start "Tomcat" %_RUNJAVA%
修改
if not "%OS%" == "Windows_NT" goto noTitle
set _EXECJAVA=start "To ...
Tomcat 服务器server.xml的关键参数配置说明:以下文字均以tomcat5.0.30为例进行。1,配置tomcat服务器访问端口,只需配置Connector的port端口即可。Tomcat默认为8080,现修改port参数值为80。<!-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 --><Connector port="80"maxThreads="150" minSpareThreads="25" maxSpareThreads ...
package com.sinosoft.jbs.sevices.sinolifelast.test;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import org.jdom.Attribute;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.output.XMLOutputter;
public class CreateXML ...
-- Drop existing database link
drop database link uy_DBLINK;
-- Create database link
create database link uy_DBLINK
connect to uy
using '(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.108)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" dir="ltr">
<head>
<meta http-equiv=&quo ...
主要是在css中导入这个文件ie-css3.htc
behavior: url(ie-css3.htc);
导入这个文件事需要服务器的支持,不然在ie中报
Access is denied to: file:///C:/Users/Administrator/Desktop/aa/ie-css3.htc
就是拒绝访问
效果
事例
<!DOCTYPE html>
<html lang="en">
<head>
<title>CSS3 support in Internet Expl ...
//替换前
ACTIVITYID
SERVICEID
NAME
ACTIVITYTYPE
KEYFLAG
RETURNDOC
//ctrl+h调用Find对话框
Find what:(\w+)
Replace with: p_nt_operareconlist(i).\1:=cur.\1;
//替换后
p_nt_operareconlist(i).ACTIVITYID:=cur.ACTIVITYID
p_nt_operareconlist(i).SERVICEID:=cur.SERVICEID
p_nt_operareconlist(i).NAME:=cur.NAM ...
//让 onresize 事件只执行一次,默认两次,稍作修改。。。
var resizeTimer = null;
window.onresize = function(){
resizeTimer = resizeTimer ? null : setTimeout(doResize,0);
}
function doResize(){
alert('resize');
}
转载之http://henry8088.iteye.com/blog/738778
红色的部分是增加的,因为这是我的需求,不过可以根据自己的需求定制自己的boedesign
html部分
官网 http://www.boedesign.com/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> ...
marshal
/**
* 对象转xml
* 返回xml
* @param tXLife
* @return
*/
public static String tXLiftToXML(com.TXLife tXLife){
String xml="";
try {
ByteArrayOutputStream out = new ByteArrayOutputStream();
JAXBContext jc = JAXBContext
.newInstance( ...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Lava Lamp Menu Demo</title>
<link rel="stylesheet" href="lavalamp_test.css" type="text/css" ...
<!--jquery.nicescroll-->
<script src="js/jquery.nicescroll/jquery.nicescroll.js" type="text/javascript"></script>
var nicesx = $("div[id^='drop-down-ul-']").niceScroll({
touchbehavior:false,
cursorcolor:"#3FA7CB",
cursor ...
html
<div class="mod-msg-bubble" id="mod-msg-bubble">
<div class="bubble-icon-container">
<div class="bubble-icon" style=""></div>
</div>
</div>
css
.mod-msg-bubble {
position: absolute;
...