P

HTTP Developer's Handbook 文档

The largest group with an unsatisfied demand for a good book on HTTP is the worldwide group of Web developers. A good book on HTTP can help new and old Web developers alike, as a thorough understanding of underlying protocols can remove the dependencies on specific tool sets and help people create and maintain better Web applications as well as adapt to technologies. HTTP has become an essential topic because the Web's importance has created an army of people creatively leveraging the Web for their specific needs. By making standards information more available to the common developer, standards compliance becomes more widespread and common, something that the industry needs. Developers will buy this book because they want to advance their expertise, and because there is very little documentation available. This book will easily become the standard reference for the Internet's most dominant protocol.

qy2664257 2013-04-06   4548   0
P

HTTP Developer's Handbook 文档

The largest group with an unsatisfied demand for a good book on HTTP is the worldwide group of Web developers. A good book on HTTP can help new and old Web developers alike, as a thorough understanding of underlying protocols can remove the dependencies on specific tool sets and help people create and maintain better Web applications as well as adapt to technologies. HTTP has become an essential topic because the Web's importance has created an army of people creatively leveraging the Web for their specific needs. By making standards information more available to the common developer, standards compliance becomes more widespread and common, something that the industry needs. Developers will buy this book because they want to advance their expertise, and because there is very little documentation available. This book will easily become the standard reference for the Internet's most dominant protocol.

zxsong 2013-08-09   3185   0
P

The Oracle Hacker's Handbook: Hacking and Defending Oracle 文档

Exploring every technique and tool used by black hat hackers to invade and compromise Oracle, this in-depth guide shows you how to find the weak spots in your databases so you can better defend them.<br> It's terribly important that Oracle get security right, and so far their record has been poor. The Oracle RDBMS has had more critical security vulnerabilities than any other database server product. By critical, I mean those flaws that can be exploited by a remote attacker with no user ID and password and which gives them full control over the database server. To put these critical security vulnerabilities in context, IBM's DB2 has had 1; Informix has had 2; and Microsoft's SQL Server has had 2. Oracle has had 9. That's more than the other database servers put together. In terms of flaws that require a user ID and password but yield full control when exploited, again Oracle outstrips the rest by far.

ThinkJ 2015-04-08   3158   0

iText生成pdf(图片转PDF) 经验

就是将某个截取到的图片转化为PDF格式的。图片如何 转化为PDF格式的呢?首先想到的是PDF格式的文档是如何生成的,知道了这个就知道如何将图 片“插入”到PDF文档中了。那么java有没有生成PDF文档的第三方jar呢?答案是肯定的。

jopen 2013-05-19   124365   0

PDF管理工具 PDF Chain 经验

PDF Chain 是一个具有图形化用户界面的PDF工具包,提供一种简单的方法来处理 PDF文件,可完成PDF文档的合并、切分、增加背景和附件等操作。它具有以下特性: Merge some (max.

fmms 2012-01-18   24142   0

PDF合并PHP库:PDF Merge for PHP 经验

PDF合并PHP库 Install in composer: "jurosh/pdf-merge": "dev-master" Highlights PDF 纵向/横向 合并 模式 。

jopen 2014-11-16   31462   0

Create A Slider From A Select Box 开源项目

这是一个漂亮的jQuery插件能够自动将select boxes转换成一个sliders控件。

码头工人 2019-02-23   498   0
jQuery   Slider  

A*(A星)算法Go lang实现 代码段

package main import ( "container/heap" "fmt" "math" "strings" ) import "strconv" type OpenList []*_AstarPoint func (self OpenList) Len() int { return len(self) } func (self OpenList) Less(i, j int) bo

gww3 2015-05-13   1099   0
算法  

A*(A星)算法python实现 代码段

/usr/bin/python # vim:set fileencoding=utf-8 # 在春节放假前两天我偶然看到了A*算法,感觉挺有意思。正好放假前 # 也没有什么事情,就花了一个下午写出算法的骨架,节后又花了半天 #

gww3 2015-05-13   1891   0
算法  

Groovy PDF 经验

Groovy PDF 是 Groovy 用来生成 PDF 文档的工具包,基于 Java 的 iText 项目。 项目主页: http://www.open-open.com/lib/vie

fmms 2012-01-18   27744   0

PDF Download 经验

当您点击一个 PDF 连接时会弹出一个对话框,让您选择是在标签页中打开还是下载它,打开后的文件格式可以选择 pdf 或者 html 。 项目主页: http://www.open-open

fmms 2012-01-18   14772   0

PDF Box 开源项目

PDFBox是一个开源的可以操作PDF文档的Java PDF类库。它可以创建一个新PDF文档,操作现有PDF文档并提取文档中的内容。 它具有以下特性: 1.将一个PDF文档转换输出为一个文本文件。

码头工人 2019-01-17   10065   0

PDF viewer 开源项目

PDF viewer添加一个PDF透视图到Eclipse平台中,用于打开PDF文件而不需要依赖任何第三方工具。

码头工人 2019-01-17   8014   0

PDF Renderer 开源项目

PDF Renderer是一个采用纯Java实现的PDF阅读器和渲染器。 可以利用它实现在你的应用中查看PDF文件;在导出PDF文件之前进行预览;在服务器端Web应用中将PDF转成PNGs图片;在一个3D场景中查看PDF。

码头工人 2019-01-17   1440   0

PDF Merger 开源项目

PDF Merger它能够将多个PDF文件合并成一个PDF文件。 收录时间:2011-01-03 20:19:24

码头工人 2019-01-17   466   0
P9

  j​a​v​a​中​f​i​n​a​l​、​f​i​n​a​l​l​y​、​f​i​n​a​l​i​z​e​的​区别 文档

FinalTest {      // 在定义时初始化      public final int A = 10;     // 在初始化块中初始化      public final int B;      {

千里马 2014-08-10   4378   0

HTML转PDF的工具 xhtml2pdf 经验

xhtml2pdf 使用 ReportLab / HTML5lib / pyPdf 等项目来将 HTML/XHTML/XHML 转换成 PDF 文档。支持 HTML 5 和 CSS 2.1 以及部分 CSS

fmms 2012-01-17   37123   0

PDF转成SVG:pdf2svg 经验

一个使用 PDF.js 构建的工具用于,将PDF转成SVG格式。 项目主页: http://www.open-open.com/lib/view/home/1408797480397

jopen 2014-08-23   50377   0

Python代码生成PDF文档 py2pdf 经验

py2pdf 可以用来将 Python 和 ASCII 代码转成 PDF 文档,具有Python语法着色功能,以及对 Python的类和方法以及函数会通过PDF 的书签来进行标注,相当不错。 查看示例PDF:

fmms 2012-01-17   58048   0

纯Java的PDF阅读器 PDF Renderer 经验

PDF Renderer 是一个开源的纯 Java 的 PDF 文档渲染和阅读器,使用 Java2D 技术。PDF Renderer 将 PDF 渲染到 Swing 面板,也可绘制到其他 Graphics2D

jopen 2012-01-16   47727   0
1 2 3 4 5 6 7 8 9 10