- 浏览: 166599 次
- 性别:
- 来自: 深圳
最新评论
-
daikwell:
294676001 写道求解压密码
PD4ML实现将html模版转为pdf文件 -
竹之夭夭:
不能return false; 这样写 下拉框显示有问题
ExtJs combobox模糊匹配 -
294676001:
求解压密码
PD4ML实现将html模版转为pdf文件 -
demojava:
........
PD4ML实现将html模版转为pdf文件 -
戴氏家族:
pdf4ml.useTTF("java:fonts& ...
PD4ML在线输出pdf文件内容
文章列表
VMware8序列号
- 博客分类:
- linux
MV4YN-0L38Q-2ZK60-XUA7K-AAZ18
0V6UY-4Z29L-8ZNQ1-R80QK-ACWL6
HU4R3-FEKDP-GZDQ1-Z90Q4-0CQH8
4A25F-4010Q-5ZQJ9-21CNH-AATJH
tomcat配置域名
- 博客分类:
- tomcat
1.设置本地主机域名
通过修改本地主机上的一个hosts文件,可以进行对ip地址与本地域名的映射,从而解决在本地调试JSP项目的时候,通过本地域名进行访问。
hosts文件在系统目录C:\WINDOWS\system32\drivers\etc\下,这个目录不容 ...
java责任链模式
- 博客分类:
- designerPattern
//过滤器接口: Filter
package com.bjsxt.chain;
public interface Filter {
public void doFilter(Request request, Response response);
}
//实现类1 : Fillter1
package com.bjsxt.chain;
public class Filter1 implements Filter {
public void doFilter(Request request, Response response) {
...
linux修改系统时间
- 博客分类:
- linux
首先需要切换到root操作用户模式。
方法一:
date 010318242008(月日时分年)(完整书写)
date 010318242008.30(月日时分年.秒)
方法二:
1》先设置日期
date -s 20080103
2》设置时间
date -s 18:24
+++++++++++++++++++++++++++++
如果要同时更改BIOS时间
再执行
clock -w
log4j.rootLogger=DEBUG,CONSOLE,A1,im
log4j.addivity.org.apache=true
# 应用于控制台
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
log4j.appender.Threshold=DEBUG
log4j.appender.CONSOLE.Target=System.out
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
log4j.appender.CONSOL ...
PD4ML在线输出pdf文件内容
- 博客分类:
- pd4ml
/**
* 在浏览器中输出pdf文件
*
* @param request
* @param response
* @throws IOException
*/
public void outputPdf(HttpServletRequest request, HttpServletResponse response) throws IOException {
String templatePath = "http://localhost:8088/PD4ML/template.html";
htmlToPdf(req ...
js将long日期格式转换为标准日期格式
- 博客分类:
- js
<script language="javascript">
//扩展Date的format方法
Date.prototype.format = function (format) {
var o = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
&qu ...
Ext动态给panel的html属性赋值
- 博客分类:
- ExtJs
Ext.onReady(function(){
var p = new Ext.Panel({
id:'my_panel',
title: 'My Panel',
renderTo: document.body,
html:"test测试"
});
});
var _p =Ext.getCmp("my_panel");
_p.body.update(<a href='XXX' >下载</a>& ...
js跳转问题解决方式
- 博客分类:
- js
<script language="javascript">
if (top.location != self.location) top.location=self.location;
</script>
我是数据库驱动的问题,我数据库用的是sqlserver2005的,而驱动是2000的,所以导致了这个问题存在!
Date.prototype.format = function(format)
{
var o = {
"M+" : this.getMonth()+1,
"d+" : this.getDate(),
"h+" : this.getHours(),
"m+" : this.getMinutes(),
"s+" : this.getSeconds(),
"q+" : Math.floor((t ...
Ext.Msg.show({
title : 'title',
msg : '错误信息',
buttons : Ext.Msg.OK,
icon : Ext.Msg.ERROR
});
在SPRING MVC3中,比如做REST时,经常要用JASON去解析,遇到了日期格式化的问题,
请看例子:
1) 比如有一个POJO
package com.loiane.model;
import java.util.Date;
import org.codehaus.jackson.annotate.JsonAutoDetect;
@JsonAutoDetect
@Entity
public class Company {
private int id;
private double price;
private String c ...
根据开始位置和结束位置分
select * from
(select a.*,rownum row_num from
(select * from mytable t order by t.id desc) a
) b where b.row_num between 1 and 10
根据当前页和每页最大数分
SELECT TWO.* FROM
(SELECT ROWNUM RN, ONE.* FROM (
SELECT * FROM empl
) ONE) TWO
WHERE 1 = 1
AND TWO.RN > 10 * ...