- 浏览: 6899 次
- 性别:
- 来自: 北京
最新评论
文章列表
/**
* @author zhangyang
* @version 1.0
*/
public class TestStr{
public static void main(String[] args) throws Exception{
String str = "我爱mywife";
System.out.println(cutString(str,5));
}
public static String cutString(String str,int length) throws Exception{ ...
package test;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
public class TimerTest {
public static void main(String[] args){
SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd");
long ...
仔细看配置应该能看懂,就不多写注释了
applicationContext-quartz.xml配置如下:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:util="http://www.springframew ...
第一步:下载wkhtmktopdf软件,安装在指定的目录,如:C:\htmlToPdf\wkhtmltopdf,
第二步:把安装好的wkhtmltopdf文件目录加到环境变量Path路径中,
public void convertFile(){
HttpURLConnection con = null;
URL url = null;
Process p = null;
String cmd = "html2pdf";//安装文件目录名,此名是在linux下的,其它可以自己加目录
try {
String sessionid = Struts2U ...