05 2012 档案
摘要:OverviewjTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5, 7, 2000, 2005 and 2008) and Sybase (10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC 3.0 compatible, s
阅读全文
摘要:from:http://www.lesscss.net/一种动态样式语言.LESS 将 CSS 赋予了动态语言的特性,如变量,继承,运算,函数. LESS 既可以在客户端上运行 (支持IE 6+, Webkit, Firefox),也可以借助Node.js或者Rhino在服务端运行。变量变量允许我们单独定义一系列通用的样式,然后在需要的时候去调用。所以在做全局样式调整的时候我们可能只需要修改几行代码就可以了。 // LESS@color: #4D926F;#header { color: @color;}h2 { color: @color;}/* 生成的 CSS */#header {...
阅读全文
摘要:http://java.decompiler.free.fr/The “Java Decompiler project” aims to develop tools in order to decompile and analyze Java 5 “byte code” and the later versions.JD-Coreis a library that reconstructs Java source code from one or more “.class” files. JD-Core may be used to recover lost source code and e
阅读全文
该文被密码保护。
摘要:private static string CreatePdf(string fileName){ string command = "gswin32c -q -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=\"" + fileName + ".pdf\" -fc:\\output.ps"; Console.WriteLine(command); Process p = new Process(); StreamWriter sw; StreamReader sr; ProcessStartI...
阅读全文
摘要:http://code.google.com/p/wkhtmltopdf/DescriptionSimple shell utility to convert html to pdf using the webkit rendering engine, and qt.IntroductionSearching the web, I have found several command line tools that allow you to convert a HTML-document to a PDF-document, however they all seem to use their
阅读全文