码迷,mamicode.com
首页 > 2015年06月11日 > 全部分享
HelloWorld 之JasperReports初步
在企业应用系统中,经常要输出各种格式的数据报表。著名的开源项目NewDocument”新建报表文档,可在弹出的对话框选择报表的大小、版式等。步骤2:按照默认版式创建报表,选择菜单“Data->Connections/Datasources”指定数据库连接或数据源,在弹出的对话框中单击“New”,并在...
分类:Web程序   时间:2015-06-11 12:53:17    阅读次数:161
巧用nth_element求容器前n%大小的那个数
1 #include 2 #include 3 #include 4 #include 5 #include 6 std::string::size_type stringLengthSum(std::string::size_type sumSoFar, const std::stri...
分类:其他好文   时间:2015-06-11 12:55:03    阅读次数:122
ArcSDE 数据迁移 Exception from HRESULT: 0x80041538问题及解决方案
一、问题描述 1、采用gdb模板文件,在ArcSDE(数据服务器)中批量创建数据库表(数据迁移)时,用到接口ESRI.ArcGIS.Geodatabase.IGeoDBDataTransfer的方法Transfer时,报错,错误为:Exception from HRESULT: 0x8004153....
分类:其他好文   时间:2015-06-11 12:55:04    阅读次数:252
POJ 2538
#include//#include#include#includeusing namespace std;char map[]={'`','1','2','3','4','5','6','7','8','9','0','-','=','Q','W','E','R','T','Y','U
分类:其他好文   时间:2015-06-11 12:54:31    阅读次数:107
Android DDMS如何使用(转)
DDMS的全称是Dalvik Debug Monitor Service,它为我们提供例如:为测试设备截屏,针对特定的进程查看正在运行的线程以及堆信息、Logcat、广播状态信息、模拟电话呼叫、**SMS、虚拟地理坐标等等。 如何启动 DDMS启动DDMS有两种方法。如下: 1、直接双击 SDK.....
分类:移动开发   时间:2015-06-11 12:54:59    阅读次数:188
Aerospike系列:6:AerospikeTools & Utilities
1:Aerospike Query Language类似于SQL命令。可以用来管理索引和用户自定义函数,也可以测试大多数数据库的功能。[root@localhost ~]#aql OPTIONS-h #Default: 127.0.0.1-p #Default: 3000-c -f -v #En.....
分类:其他好文   时间:2015-06-11 12:53:59    阅读次数:139
mysql内置函数
mysql_fetch_row()以索引数组形式获取数据,mysqli_fetch_row() 函数从结果集中取得一行,并作为枚举数组返回。返回值:返回一个与所取得行相对应的字符串数组。如果在结果集中没有更多的行则返回 NULL。mysql_fetch_array()以混合数组形式获取数据,函数从结...
分类:数据库   时间:2015-06-11 12:53:31    阅读次数:224
POJ 2485
1 #include 2 #define MAXN 505 3 #define inf 1000000000 4 using namespace std; 5 typedef int elem_t; 6 int _m[MAXN][MAXN]; 7 int pre[MAXN]; 8 elem_t p....
分类:其他好文   时间:2015-06-11 12:54:21    阅读次数:112
Ajax操作的四个步骤
Ajax操作的四个步骤:创建Ajax对象连接服务器发送请求接收返回信息 1 2 3 4 5 6 39 40 41 42 43 View Code
分类:Web程序   时间:2015-06-11 12:54:38    阅读次数:114
POJ 2707
1 #include 2 #include 3 #include 4 using namespace std; 5 6 int main() 7 { 8 //freopen("acm.acm","r",stdin); 9 int min_ele(int a,int b);10 ...
分类:其他好文   时间:2015-06-11 12:53:42    阅读次数:133
51nod 1126 求递推序列的第N项 && hdu - 1005 Number Sequence (求周期)
http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1126http://acm.hdu.edu.cn/showproblem.php?pid=1005注意上面一题和下面一题的区别,上面A,B可能取负数,但是mod跟c++中%是...
分类:其他好文   时间:2015-06-11 12:54:03    阅读次数:120
POJ 2551
1 #include 2 #include 3 #include 4 using namespace std; 5 6 //int my_pow(int ,int ); 7 int main() 8 { 9 //freopen("acm.acm","r",stdin);10 in...
分类:其他好文   时间:2015-06-11 12:53:38    阅读次数:90
ios之开发屏幕适配和系统版本适配
ios软件开发过程中很重要的一点是对系统和屏幕进行适配对系统的适配主要是IOS7以后和之前以及IOS8新增特性,屏幕适配主要是对不同设备采用不同的布局以最佳展示效果展现给用户。针对系统的适配:IOS7以后和之前12#define IOSVersion [[[UIDevice currentDevic...
分类:移动开发   时间:2015-06-11 12:51:27    阅读次数:139
HTML5自带的原生定位
使用谷歌的,与百度有偏差,一般不推荐使用一、window.navigator.geolocation验证浏览器是否支持if (window.navigator.geolocation) {alert("支持地理定位");}else{alert("不支持");}二、getCurrentPosition...
分类:Web程序   时间:2015-06-11 12:51:55    阅读次数:155
Pow(x, n)
下面介绍一下解决该问题的几种方法以及要注意的地方:1)最直观容易想到的方法就是用递归方法求n个x的乘积,注意考虑n的正负号,时间复杂度为O(n)class Solution {public: double myPow(double x, int n) { if(n==0) ...
分类:其他好文   时间:2015-06-11 12:52:06    阅读次数:110
POJ 2533
1 #include 2 #include 3 #define MAXN 1005 4 using namespace std; 5 6 int dp[MAXN]; 7 int date[MAXN]; 8 9 int main()10 {11 //freopen("acm.acm","...
分类:其他好文   时间:2015-06-11 12:53:52    阅读次数:125
POJ 2608
1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int main() 8 { 9 //freopen("acm.acm","r",stdin);10 set coll[7];11 ...
分类:其他好文   时间:2015-06-11 12:52:52    阅读次数:138
2310条   上一页 1 ... 89 90 91 92 93 94 95 ... 136 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!