摘要: 定义和用法ajaxSetup() 方法为将来的 AJAX 请求设置默认值。语法$.ajaxSetup({name:value, name:value, ... }) 该参数为带有一个或多个名称/值对的 AJAX 请求规定设置。下面的表格中列出了可能的名称/值:名称 值/描述async 布尔值,表示请 阅读全文
posted @ 2017-07-17 14:52 雪来了 阅读(2572) 评论(0) 推荐(0) 编辑
摘要: 转载自 http://panyongzheng.iteye.com/blog/2222666 谢谢 保留收藏 关于spring java.lang.IllegalArgumentException: Name for argument type [java.lang.String] 的错误 http 阅读全文
posted @ 2017-02-02 11:19 雪来了 阅读(20850) 评论(0) 推荐(1) 编辑
摘要: https://ag-grid.com/javascript-grid-api/index.php https://ag-grid.com/javascript-grid-api/index.php 阅读全文
posted @ 2016-10-06 17:13 雪来了 阅读(199) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/jiqing9006/p/5091491.html 1.概述 除了正常运行模式,ECMAscript 5添加了第二种运行模式:"严格模式"(strict mode)。顾名思义,这种模式使得Javascript在更严格的条件下运行。 2.为什么用严格模式 阅读全文
posted @ 2016-08-29 21:43 雪来了 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Cognos: 代码如下: public void queryReportVersions(String searchP, String reportName, String savePath) { PropEnum props[] = { PropEnum.defaultName, PropEnu 阅读全文
posted @ 2016-07-13 17:38 雪来了 阅读(184) 评论(0) 推荐(0) 编辑
摘要: Cognos: Run report 代码如下: public void executeReport(String path, String[] format) throws RemoteException { PropEnum props[] = Util.getAllPropEnum(); // 阅读全文
posted @ 2016-07-13 17:37 雪来了 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 在Cognos中report运行结果为reportversion, 默认配置为 1。 可以在Cognos 修改report属性。 简单代码: public void deleteReportVersion(String path, String[] format) throws RemoteExce 阅读全文
posted @ 2016-07-13 17:36 雪来了 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 简单介绍: 代码是通过构造XML, 模拟运行(runSpecification)获取运行XML,解析XML获取参数集合List. package test; import java.io.ByteArrayInputStream; import java.util.List; import org. 阅读全文
posted @ 2016-07-13 16:58 雪来了 阅读(415) 评论(0) 推荐(0) 编辑
摘要: Cognos Connection, 通过 Cogons API 访问Cogons 已经安装好的平台,获取已经创建好的Report,修改此report,或者运行此report获取结果等。。。 分析Connection. 简单代码如下: package test; import java.net.UR 阅读全文
posted @ 2016-07-12 18:03 雪来了 阅读(558) 评论(0) 推荐(0) 编辑
摘要: Javamail 两种不同方式分析 第一种: 登陆个人邮箱,以此邮箱为基础发送邮件: public static void sendTxtMail() { Properties props = new Properties(); Session session = Session.getInstan 阅读全文
posted @ 2016-06-01 17:06 雪来了 阅读(184) 评论(0) 推荐(0) 编辑