摘要: //字体 BaseFont baseFont = null; //路径 File path = new File("G:\\123.pdf"); //document对象 设置纸张 四周边距 Document document = new Document(PageSize.A4, 50, 50, 50, 5... 阅读全文
posted @ 2017-08-30 14:57 石洋 阅读(316) 评论(0) 推荐(0)
摘要: <!-- 调度器 --> <bean id="startQuertz" autowire="no" class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <property name="triggers"> <list 阅读全文
posted @ 2017-08-28 17:21 石洋 阅读(211) 评论(0) 推荐(0)
摘要: 看了别人写的 自己照着写了一下 <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = requ 阅读全文
posted @ 2017-08-15 16:14 石洋 阅读(170) 评论(0) 推荐(0)
摘要: <script src="<%=basePath%>plug-in-js/My97DatePicker/WdatePicker.js" type="text/javascript" defer="defer"></script> <input type="text" id="kspxsjs" nam 阅读全文
posted @ 2017-08-11 09:23 石洋 阅读(242) 评论(0) 推荐(0)
摘要: org.hibernate.LazyInitializationException: could not initialize proxy - no Session at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractL 阅读全文
posted @ 2017-08-09 17:37 石洋 阅读(115) 评论(0) 推荐(0)
摘要: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme() 阅读全文
posted @ 2017-08-09 15:48 石洋 阅读(224) 评论(0) 推荐(0)
摘要: public class DateTest { /* * 日期格式 常用的两种 * yyyy-MM-dd * yyyy/MM/dd */ public static void main(String[] args) throws ParseException { //01.Date 转换成字符串 Date ... 阅读全文
posted @ 2017-08-01 17:57 石洋 阅读(138) 评论(0) 推荐(0)
摘要: 还可以取下标,从 0 开始 阅读全文
posted @ 2017-07-25 11:05 石洋 阅读(25876) 评论(0) 推荐(0)
摘要: 1 package com.estone.manage.districtTest.action; 2 3 import java.security.MessageDigest; 4 import java.security.NoSuchAlgorithmException; 5 6 public c 阅读全文
posted @ 2017-07-19 13:22 石洋 阅读(123) 评论(0) 推荐(0)
摘要: 使用递归实现删除 1 //删除 2 public String dictionaryDel(){ 3 try { 4 if (ids != null && !"".equals(ids)) { 5 6 String[] split = ids.split(","); 7 8 for(String i 阅读全文
posted @ 2017-07-18 17:08 石洋 阅读(138) 评论(0) 推荐(0)