摘要:
之前写过一个blog,Oracle expdp为什么比exp快,原理是什么,是从官方文档中获知的,如今通过10046来分析exp的过程。 C:\Users\Administrator>exp LCAMTEST/LCAMTEST@10.10.15.25_LCAM file=d:/test.dmp ta 阅读全文
posted @ 2017-04-18 21:40
cxchanpin
阅读(268)
评论(0)
推荐(0)
摘要:
问题描写叙述: SQL进行IN查询时出现:java.sql.SQLException: ORA-01795: 列表中的最大表达式数为 1000 解决的方法: 问题原因是:SQL进行IN查询时。IN中的数据量不能超过1000条。 比如:select * from student where id in 阅读全文
posted @ 2017-04-18 20:45
cxchanpin
阅读(2521)
评论(0)
推荐(0)
摘要:
用set构造,优先队列和堆也能够 /* ID:kevin_s1 PROG:humble LANG:C++ */ #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <vector> # 阅读全文
posted @ 2017-04-18 19:56
cxchanpin
阅读(143)
评论(0)
推荐(0)
摘要:
【注意】 最新版本号请看这里:http://uikoo9.com/blog/detail/java-flashwavrecorder 【前言】 肯定有需求要网页录音,并且要上传。这奇葩需求。 然后找到了FlashWavRecorder, 地址:https://github.com/cykod/Fla 阅读全文
posted @ 2017-04-18 18:56
cxchanpin
阅读(435)
评论(1)
推荐(0)
摘要:
8 格式 Formatting 代码风格和格式确实比較任意, 但一个项目中全部人遵循同一风格是非常easy的; 个体未必允许下述每一处格式规则, 但整个项目服从统一的编程风格是非常重要的, 仅仅有这样才干让全部人非常轻松地阅读和理解代码; 我们写了一个 settings file for emacs 阅读全文
posted @ 2017-04-18 17:19
cxchanpin
阅读(315)
评论(0)
推荐(0)
摘要:
软考的复习时间从3.23開始至5.23结束。历经九九八十一难。最终修成正果,再过两天就要上战场了。为考场上的战士们“加油呐喊”吧! 本文将对我们复习考试的经过做一个说明,希望能对今后參加考试的您,有所帮助! 软考前的小插曲:自考 由于參加自考的原因,所以最開始的一星期用来复习《运筹学》和《操作系统》 阅读全文
posted @ 2017-04-18 16:40
cxchanpin
阅读(205)
评论(0)
推荐(0)
摘要:
非常多Android设备已经支持NFC(近距离无线通讯技术)了。本文就以实例的方式。为大家介绍怎样在Android系统中进行NFC开发。 Android NFC开发环境 使用硬件:Google Nexus S。北京大学学生卡。(ps:笔者本想使用公交一卡通进行測试,发现手机不能正确识别) 手机操作系 阅读全文
posted @ 2017-04-18 15:30
cxchanpin
阅读(839)
评论(0)
推荐(0)
摘要:
1 UpdateData 不能及时更新控件内容 原因: UpdateData是通过数据交换实现改变控件显示的。改变了之后必需要调用一次OnPaint才干实现刷新。 因此,若是在一个函数里重复多次调用有时是没有效果的。 若想及时更新控件内容。在调用UpdateData后。须要再调用下UpdateWin 阅读全文
posted @ 2017-04-18 14:49
cxchanpin
阅读(241)
评论(0)
推荐(0)
摘要:
找出一个递减序列,假设有两个或两个以上递减序列直接no了,然后对递减序列两端数start。end,然后比較a[start]和a[end+1] 。 a[end] 和a[start-1] #include<iostream> #include<stdio.h> using namespace std; 阅读全文
posted @ 2017-04-18 13:59
cxchanpin
阅读(205)
评论(0)
推荐(0)
摘要:
Marbles Input: standard input Output: standard output I have some (say, n) marbles (small glass balls) and I am going to buy some boxes to store them. 阅读全文
posted @ 2017-04-18 12:54
cxchanpin
阅读(262)
评论(0)
推荐(0)
摘要:
1.拨号界面输入*#06#。显示IMEI号,这是怎么出来的? 2.怎样高速的找出Android平台中的指令? 1. 在DialpadFragment中的EditText注冊一个Textchanged的监听器TextWatcher, 当EditText中的内容发生变化时会调用对应的回调函数,TextW 阅读全文
posted @ 2017-04-18 12:23
cxchanpin
阅读(262)
评论(0)
推荐(0)
摘要:
在TCP/IP协议中,TCP协议提供可靠的连接服务,採用三次握手建立一个连接。 第一次握手:建立连接时,client发送syn包(syn=j)到server,并进入SYN_SENT状态,等待server确认;SYN:同步序列编号(Synchronize Sequence Numbers)。 第二次 阅读全文
posted @ 2017-04-18 10:45
cxchanpin
阅读(272)
评论(0)
推荐(0)
摘要:
<Files *> Options -Indexes </Files> <IfModule mod_headers.c> <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$"> Header set Cache-Control "max 阅读全文
posted @ 2017-04-18 10:12
cxchanpin
阅读(1227)
评论(0)
推荐(0)
摘要:
1、注解的定义 import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang. 阅读全文
posted @ 2017-04-18 09:18
cxchanpin
阅读(353)
评论(0)
推荐(0)
摘要:
php依赖管理工具。用于处理packages或者libraries。基于单个工程project,在project的vender目录下保存,默认永远不会全局安装。 须要php 5.3.2+,安装资源包时须要git,svn或者hg。 1、下载composer.phar到你的项目文件夹下,是项目打包文件, 阅读全文
posted @ 2017-04-18 08:23
cxchanpin
阅读(1479)
评论(1)
推荐(0)