- 浏览: 27338 次
- 性别:
- 来自: 上海
最新评论
文章列表
引入 jquery
引入
<script type="text/javascript" src=/tableExport.js"></script>
页面talbe
<table id="customers"> .... </table>
spring mvc poi导出excel
- 博客分类:
- java小技巧
@RequestMapping(value = "/importexcel.htm", method = RequestMethod.GET)
public ModelAndView _importExcel(HttpServletRequest request, HttpServletResponse response, Integer cId) throws Exception {
// 获得要导出的数据集
List<Map<String, Object>> list = d_ExchangeC ...
java 上的各种路径获取
- 博客分类:
- java小技巧
http://localhost:8080/test//test.jsp?p=fuck
basePath:http://localhost:8080/test/
getContextPath:/test getServletPath:/test.jsp getRequestURI:/test/test.jsp getRequestURL:http://localhost:8080/test/test.jsp getRealPath:D:\Tomcat 6.0\webapps\test\ getServletContext().getRealPath:D:\Tomcat 6.0\web ...
jetty eclipse下环境:
http://www.cnblogs.com/super-d2/p/3837415.html
1)官网下载nodejs (msi版,自动生成环境变量无需配置)
2)安装Nodeclipse插件
Eclipse插件:
NodeJS的插件:http://www.nodeclipse.org/updates/
(http://dl.bintray.com/nodeclipse/nodeclipse/0.6.0/)
VJET编辑提示插 ...
1.tomcat 修改
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1"
redirectPort="8443"
useBodyEncodingForURI="true" URIEncoding="UTF-8" />
加上了:
useBodyEncodingForURI="true" U ...
百度地图与bootstrap样式不兼容的问题 当在页面div用百度地图时,出现不显示地图内容的问题。网上就是有牛人。给出了解决办法bootstrap.css的样式里有放map(allmap)的样式,用地图的时候使用id="map_canvas" 就行了#map_canvas img { max-width: none;}
http://blog.csdn.net/freedomboy319/article/details/44095875
http://blog.csdn.net/calvin_kui/article/details/44831081
spring init
- 博客分类:
- spring init
关于在spring 容器初始化 bean 和销毁前所做的操作定义方式有三种:
第一种:通过@PostConstruct 和 @PreDestroy 方法 实现初始化和销毁bean之前进行的操作
第二种是:通过 在xml中定义init-method 和 destory-method方法
第三种是: 通过bean实现InitializingBean和 DisposableBean接口
在xml中配置 init-method和 destory-method方法
只是定义spring 容器在初始化bean 和容器销毁之前的所做的操作
基于xml的配置只是一种方式:
...
今天在写程序时需要读取桌面的路径,开始时以为需要使用JNI来实现,于是调出Delphi,调用SHGetSpecialFolderLocation方法,处理后返回,编译成DLL,都很顺利。可但是,但可是,我又犯了想当然的错误,这样能不能实现?当然能。只不过还有更好的办法是在之后阅读JDK文档时发现的。其实JDK中已经提供了这个方法,具体方法如下:FileSystemView fsv = FileSystemView.getFileSystemView();fsv.getHomeDirectory(); //这便是读取桌面路径的方法了
content的取值为webkit,ie-comp,ie-stand之一,区分大小写,分别代表用webkit内核,IE兼容内核,IE标准内核。若页面需默认用极速核,增加标签:<meta name="renderer" content="webkit">
默认用ie最新内核,增加标签:<meta http-equiv="X-UA-Compatible" content="IE=edge">
当用$.ajax()向后台提交参数时,如果参数中数组的话一般在后台会用List,或Integer[] 等数组对象进行接收.
比如:
$.ajax({ type: "POST", url: url, data:{ gender:[0,1] }, dataType: "json", async:false });
这里有个查询性别的gender数组.
用火狐的firebug查看post数据的时候,如果jquery版本过高会发现gender按以下类型提交
schGender[] 1
schGender[] 0
...
MySql 按周/月/日统计数据的方法
知识关键词:DATE_FORMAT
select DATE_FORMAT(create_time,'%Y%u') weeks,count(caseid) count from tc_case group by weeks;
select DATE_FORMAT(create_time,'%Y%m%d') days,count(caseid) count from tc_case group by days;
select DATE_FORMAT(create_time,'%Y%m') months,count(c ...
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.imageio.ImageIO;
public class Test {
public static void cutImg(String path,String sPath,S ...
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.TypeReference;
import com.alibaba.fastjson.serializer.Seriali ...