- 浏览: 56807 次
- 性别:
- 来自: 广州
最新评论
文章列表
问题:如图
解决:
在Object对象中增加一个属性<param value="transparent" name="wmode" />
效果如图:
1、定义一个类继承org.springframework.scheduling.quartz.QuartzJobBean;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.quar ...
public class Img extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//设置Content-Type响应头
response.setContentType("image/jpeg");
//下面三条语句用于设置页面不缓存
response.setHeader(&q ...
1、字符编码
在计算机中任何数据都是以二进制存储的,要存储一个字符就要对它进行编码,用一个二进制数与这对应,这种对应的规则,就是字符的编码。编码的规则有很多种,一种规则所编码的“字符”的集合就叫做“字符集”。在制定编码标准的时候,“字符的集合”和“编码”一般都是同时制定的,因此,平时我们所说的“字符集”,例如GB2312、GBK和JIS等,除了有“字符的集合”这层含义外,同时也包含了“编码”的含义。
最早出现的编码是ASCII码,因为早期计算机系统只支持英语。后来每个国家(或区域)规定了计算机信息交换用的字符编码集,例如中国的GB2312等作为自己国家/区域内信息处理的基 ...
myeclipse安装svn插件
- 博客分类:
- java
方法1:link安装
安装subclipse, MyEclipse9.0 SVN插件
1、从官网下载site-1.6.10.zip文件,网址是:subclipse.tigris.org,
2、从中解压出features与 plugins文件夹,复制到E:\MyEclipse\myPlugin\svn里面,其它的*.xml文件不要。
3、在 E:\MyEclipse\MyEclipse9.0\dropins下新建文件svn.link,内容是:path=E:\\MyEclipse \\myPlugin\\svn保存。
4、(唛呆儿:这一步不确定,先不要删除)删除E:\MyEclipse\MyEcli ...
//找到整个字符串中的数字
String filecontext="sdfsdlfj465ff46548f98xcz1058fg";
Pattern p=Pattern.compile("[\\d]+.[\\d]+");
Matcher m=p.matcher(filecontext);
while(m.find()){
String strNumber = m.group();
}
把项目中编译后的内容放入指定的文件夹:
把java build path的值为:DS/WebContent/WEB-INF/classes
tomcat访问指定路径的项目:
在tomcat-6.0.1/conf/server.xml文件中的host标签中加入
<Context crossContext="false" debug="0" docBase="F:\Java\EclipseWorkingSpace\DS\WebContent" path="/ds" reloadable="false& ...
/**
* 调用存储过程(l_p_AssignedMaterial_KanBan)
* @return
*/
public int callProcedure(final String test){
try {
Object obj = this.mesJdbcTemplate.execute(new ConnectionCallback() {
@Override
public Object doInConnection(Connection conn) throws SQLException,DataAccessException ...
<link rel="stylesheet" type="text/css" href="${base}/jslib/jquery.contextMenu.css"/>
<script type="text/javascript" src="${base}/jslib/jquery.contextMenu.js"></script>
<input type="hidden" id="pageContex" ...
/**
* 导出信息
* @date 2011-6-10
*/
public void exportMatchangeExcel(QueryVo queryVo) {
WritableWorkbook workbook = null;
try{
HttpServletResponse response = ServletActionContext.getResponse();
OutputStream outPutS = response.getOutputStream();
response.resetBuffer();
...
主页面:
<#setting url_escaping_charset='utf-8'>
<html >
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" cont ...
/**
*
*/
package com.keda.util;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/ ...
在页面中输入相关的条件来过滤当前页面的数据
- 博客分类:
- JS
根路径:<input type="hidden" id="pageContex" value="${base}"/>
条件筛选:<input class="textinput" id="filterName" style="width:250px;"/>
$(document).ready(function(){
pageContex=$("#pageContex").attr("value");//获取根 ...
var firstKeyDowntime = ""; //第一次按下键(除回车)的时间
var firstKeyDown = 0; //默认为0,第一次
//为入虚拟库输入框绑定回车事件
$(function(){
$("input[id='insertStore'][dataid]").bind('keyup',function(event) {
if(event.keyCode == 13){ //按回车键时
var currDate = new Date();
var currTime ...