`
文章列表
<div class="iteye-blog-content-contain" style="font-size: 14px"></div>  Google Analytics 添加网站信息的时候,不小心添加了重复的账户配置文件,一开始没有找到删除的方法,仔细研究了一下才发现删除的过程还是比较 ...
  Each ArrayList instance has a capacity. The capacity is the size of the array used to store the elements in the list. It is always at least as large as the list size. As elements are added an ArrayList, its capacity grows automatically. The details of  ...

报表导出参数

    博客分类:
  • Java
JRExporterParameter. JASPER_PRINT //这个参数是JasperPrint的对象,exporter在导出报表前会做检测   JRExporterParameter. JASPER_PRINT_LIST //这个参数是包含了n个JasperPrint对象的java.util.List,exporter在导出报表前会做检测   JRExporterParameter.INPUT_STREAM //这个参数是JasperPrint被序列化对象的输入流,exporter在导出报表前会做检测   JRExporterParameter.INPUT_URL ...

report

    博客分类:
  • Java
http://blog.csdn.net/usedtolove/article/details/5913787 一个主从report demo, ok

gwt

    博客分类:
  • Java
Google Web Toolkit的缩写,有了 GWT可以使用 Java 编程语言编写 AJAX 前端,然后 GWT 会交叉编译到优化的JavaScript 中,而 JavaScript 可以自动在所有主要浏览器上运行。GWT允许开发人员使用 Java 编程语言快速构建和维护复杂但性能高的 JavaScript 前端应用程序,从而降低了开发难度,尤其是与 Eclipse Google 插件结合使用时,优势更明显。

google chart

Google Chart Tools 官网:https://developers.google.com/chart/ 谷歌图表工具提供了一个完美的方式形象化您的网站上的数据。从简单到复杂的层次结构树图线图,图表厨房提供了大量精心设计的图表类型。填入您的数据很容易被使用所提供的客户端和服务器端工具。 在线示例:https://developers.google.com/chart/interactive/docs/examples 在线文档:http://code.google.com/apis/ajax/playground/?type=visualization
Collections.synchronizedList引发的线程安全问题   有些容器是线程安全的(Vector,ConcurrentLinkedQueue等),有些则不是(list等),利用类   似 private static List<Task> taskQueue = Collections.synchronizedList(new    LinkedList<Task>());的方法可以得到本身不是线程安全的容易的线程安全的状态,但是要注意   的是线程安全仅仅指的是如果直接使用它提供的函数,比如:queue.add(obj); 或者  ...
阻塞与非阻塞io 1、nio  1.4 + 2、aio  1.7 3、nio、aio 框架 yanf4j ,netty3,jboss的子项目,netty2和mina   http://www.iteye.com/topic/1113611 http://www.iteye.com/topic/834447 http://www.iteye.com/topic/472333  

json 包依赖

    博客分类:
  • Java
commons-beanutils.jar commons-lang-2.4.jar ezmorph-1.0.4.jar log4j-1.2.14.jar commons-collections-testframework-3.2.1.jar commons-collections-3.2.1.jar commons-logging-1.0.4.jar   如果少就会报错, org/apache/commons/collections/map/ListOrderedMap 则说明少commons-collections-3.2.jar   org/apache/commo ...

mime type

    博客分类:
  • HTML
    post 提交数据编码形式 text/plain 以纯文本的形式传送 application/x-www-form-urlencoded 默认的编码形式,即URL编码形式 multipart/form-data MIME编码,上传文件的表单必须选择该                MIME类型被定义在<head>、</head>部分的Content-Type中。 数据类型 MIME类型 超文本标记语言文本 .htm,.html文件 ...

prototype 的ajax

初步使用,有些情况,比jquery 好使 var updater;   function changeUser(newUser, newName) { $('currentChat').value = ""; targetName = newName; targetUser = newUser;   $('nameTag').innerHTML = targetName;   updater.stop(); updater = new Ajax.PeriodicalUpdater('currentChat', 'ChatServlet', { met ...
<div style="border: 1px solid black; width: 100%; height: 300px;overflow:scroll " id="currentChat" ></div> 让他衮: var obj = document.getElementById("currentChat"); obj.scrollTop= obj.scrollHeight;   其他方法: 方法一:使用锚标记要滚动到的位置,然后通过click方法模拟点击滚动到锚所在位置 <scr ...
http://www.oseye.net/user/kevin/blog/46 如: convert_urls 该选项允许你控制TinyMCE是否够聪明,存储URL的原始值,默认情况URL会被自动转化,因为内置的浏览器逻辑以这样的方式工作,没有方法获 取真正的URL,除非你别处存储。如果你设置该选项为false,那么它会试着保持URL的完整性。默认为true,意味着URL会依据 relative_urls的状态而被强制为绝对或相对的。 Convert_urls选项示例: tinyMCE.init({ ...
  myeclipse 8.5 中手动安装svn plugin 1.http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240。到这里下载安装包。 2.到MyEclipse根目录下创建myPlugin文件夹(以后插件都可以放到这个文件夹) 3. 在myeclipse/dropins/ 中添加svn.link文件,文件内容为 path=(myPlugin文件夹中svn路径),如:path=d:\\Genuitec\\MyEclipse 8.5\\myPlugin\\svn 4. 删除d:\Genuite ...
  这里有indexeddb的一些使用,各种操作基本都包括,有的被注释   var key = null;             // Simply open the database once so that it is created with the required tables             $.indexedDB("MyECommerceSite", {             "schema& ...
Global site tag (gtag.js) - Google Analytics