- 浏览: 45338 次
- 性别:
- 来自: 武汉
最新评论
-
majiezyf:
为什么我试验不成功呢?
JAVA+EXTJS+ORACLE在页面显示BLOB类型保存的图片
文章列表
package com.webservice;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.commons.lang.StringUtils;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.PropertyInfo;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2. ...
package com.cn.util;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.dom4j.Document;
import org.dom4j.DocumentHelper;
import org.dom4j.Element;
import org.dom4j.io.SAXRe ...
/**
* 执行存储过程
* @param 存储过程名称
* @param 所需参数
* @return 存储过程发返回的错误信息
* @author wuhao
* @throws Exception
*/
public static void executeProc(String call,Object[] params) throws Exception{
String result = "";
Connection conn = null;
CallableStatement proc ...
JAVA后台
/**
* 前台展示图片
* @throws Exception
*/
@SkipPrivilege
public void showImage() throws Exception{
String jsonString = null;
try {
if(null!=cigCode&&!"".equals(cigCode)&&null!=inoutStatus&&!"".equals(inoutStatus)){
j ...
/**
* 检查字符串中是否是中文
* @param name 需要检查的字符串
* @return true:是; false:不是
*/
public static Boolean isChinese(String name){
Boolean flag = false;
try{
int n = Integer.parseInt(name);
flag = true;
}catch(Exception e){
char [] cs = name.toCharArray();
for(char c ...
public static void main(String[] args) {
BigDecimal startT= new BigDecimal(fromDateStringToLong("2011-05-05 19:30:10"));
BigDecimal endT =new BigDecimal(fromDateStringToLong("2011-05-05 16:30:20"));
BigDecimal mm = new BigDecimal((startT.doubleValue() - endT.dou ...
做数据库备份得时候,备份二进制的数据类型如BLOB类型的数据
public static String hexToString() throws Exception {
try {
InputStream in = rs.getBinaryStream(1);
int b;
StringBuffer result =new StringBuffer();
while ((b = in.read()) != -1) {
String hex = Integer.toHexString(b & 0xFF);
if (hex ...
CREATE PROCEDURE [dbo].[usp_CreateTable_DDL]
(
@sTable_Name SYSNAME,
@Create_Table_Ind BIT = 1,
@PK_Ind BIT = 1,
@FK_Ind BIT = 1,
@Check_Ind BIT = 1,
@Default_Ind BIT = 1
)
AS
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; chars ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
<head>
<meta http-equiv=&qu ...
package com.keertech.mwb.util;
import java.text.NumberFormat;
import java.util.Locale;
/**
* 比较两个字符串的相似度
*/
public class Similarity {
public static void main(String[] args) {
native2ascii.exe在JDK安装路径的bin目录下
DOS下面执行这个命令
例如文件转码
D:\jdk1.5.0_06\bin>native2ascii.exe -encoding utf8 a.txt b.txt
a.txt原文件
b.txt转码后的文件
在web.xml中添加一个全局过滤器
<filter>
<filter-name>springFilter</filter-name>
在applicationContext.xml文件中配置Spring声明式事物(2X)
注意:声明式事物,只会回滚RuntimeException,其他的异常(Exception)不会回滚
<!-- 1.加载命名空间 -->
<?
如果没有找到相对应的符合条件的查询,get()返回Null,而load()则抛ClassNotFoundException异常
load()可以返回实体类,而get()则永远无法返回实体类
load()可以充分的利用一级缓存和二级缓存现有的数据,而get()仅仅在一级缓存中查找,他会越过二级缓存,如果没有找 到则直接发送SQL语句查询