全部文章-日排行
1. Get JDK 安装文件,可用以下命令wget --no-check-certificate --no-cookies --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com" "http://download.oracle.com/otn-...
分类:编程语言 时间:2014-03-12 16:38:23 收藏:0 阅读:541
1、cleanmgr: 打开磁盘清理工具 2、compmgmt.msc: 计算机管理 3、conf: 启动系统配置实用程序 4、charmap: 启动字符映射表 5、calc: 启动计算器 6、chkdsk.exe: Chkdsk磁盘检查 7、cmd.exe: CMD命令提示符 8、certmgr....
分类:Windows开发 时间:2014-03-12 23:41:27 收藏:0 阅读:759
分类:移动平台 时间:2014-03-13 12:09:34 收藏:0 阅读:536
remoting 实施步骤1.创建 --web project 和 -- Flex project2.在web project 下创建 -- com.HelloRemoting: package com; public class HelloRemoting { public String hell...
分类:其他 时间:2014-03-14 18:32:06 收藏:0 阅读:409
首先先介绍和windows信号量有关的两个API:创建信号量、释放信号量 HANDLE WINAPI CreateSemaphore( msdn官网解释 _In_opt_ LPSECURITY_ATTRIBUTES lpSemaphoreAttributes _In_ LONG lInitialCo...
分类:编程语言 时间:2014-03-14 21:26:11 收藏:0 阅读:788
Python操作redispythonredis数据库searchimport首先确保redis已经正常启动。安装可以去pypi上找到redis的Python模块:http://pypi.python.org/pypi?%3Aaction=search&term=redis&submit=search然后按照提示down下来redis-py-2.2.1.tar.gz非常标准的解压:#tarxvzfredis..
分类:编程语言 时间:2014-03-15 04:58:18 收藏:0 阅读:420
无缝滚动测试 offsetWidth 和 scrollLeft 的应用 和子容器800%与父容器的使用参考 http://blog.csd...
分类:Web开发 时间:2014-03-16 00:50:49 收藏:0 阅读:623
一、安装问题环境: CentOS + Python 2.7 + Pip1) 安装lxml 时 遇到错误,可能是缺少 libxml2-devel 和 libxslt-devel,使用yum安装:yum install libxslt-devel libxml2-devel2) 遇到 bz2 错误,则需...
分类:编程语言 时间:2014-03-15 21:28:35 收藏:0 阅读:835
NERDTree  :A tree explorer plugin for navigating the filesystem          用于浏览文件系统的树资源管理器插件 1.下载地址           http://www.vim.org/scripts/script.php?script_id=1658 2.安装        install de...
分类:其他 时间:2014-03-16 09:59:20 收藏:0 阅读:531
上篇博客讲解rest服务开发时,曾经提到过asp.net mvc中的rest api,由于篇幅原因,没有在上篇博客中进行讲解,这里专门拿出来进行讨论。还是一样引用上次的案例,用asp.net mvc提供的web api来进行IP地址归宿地查询接口的开发。由于我机器装的是win8企业版操作系统,VS版...
分类:Windows开发 时间:2014-03-17 05:00:58 收藏:0 阅读:721
将Excel文件数据库导入SQL Server的三种方案//方案一: 通过OleDB方式获取Excel文件的数据,然后通过DataSet中转到SQL ServeropenFileDialog = new OpenFileDialog();openFileDialog.Filter = "Excel ...
分类:数据库技术 时间:2014-03-17 11:56:19 收藏:0 阅读:633
1.类的声明 声明类,可以使用关键字class,在它后面依次包含类名,一组放在{ }内的成员属性和方法以及结尾的分号 类声明类似与函数声明,将类本身及其属性告诉编译器,类声明本身不改变程序的行为,除非使用它,就像需要调用函数一样 类声明如下: 1 class Circle 2 { 3 private...
分类:编程语言 时间:2014-03-18 04:04:57 收藏:0 阅读:503
这道题真的很无聊,就是找一个圆,至少有一个点在这个圆上,其他点不能在圆外,半径不定; 1 #include 2 #include 3 #include 4 #include 5 #define maxn 3000 6 using namespace std; 7 8 struct node 9 {1...
分类:Windows开发 时间:2014-03-18 12:16:56 收藏:0 阅读:610
Commentscan be classified by:style (inline/block)parse rules (ignored/interpolated/stored in memory)recursivity (nestable/non-nestable)uses (docstring...
分类:其他 时间:2014-03-18 12:15:09 收藏:0 阅读:507
启动maven项目时报java.util.zip.ZipException: invalid entry size (expected 7612 but got 5955 bytes) 可能是maven下载的jar包有问题 解决方法 清空maven本地库,重新下载jar包,问题解决
分类:编程语言 时间:2014-03-18 12:15:06 收藏:0 阅读:4232
hdu 2546题目意思:食堂买菜,只要余额大于5圆就可以买任意的菜,问最少余额为多少。思路:把5圆留着购买最贵的菜,其余的直接0-1背包即可,有点贪心的思想。 1 #include 2 #include 3 #include 4 #include 5 #define maxn 1010 6 #de...
分类:其他 时间:2014-03-18 11:58:20 收藏:0 阅读:481
html5中的Web Storage包括了两种存储方式:sessionStorage和localStorage。sessionStorage用于本地存储一个会话(session)中的数据,这些数据只有在同一个会话中的页面才能访问并且当会话结束后数据也随之销毁。因此sessionStorage不是一种...
分类:Web开发 时间:2014-03-18 11:57:42 收藏:0 阅读:482
gvim的文本比较功能很强,命令行用法:gvim -d file1 file2,hg自带的hg diff没有颜色标示,含义也不够清晰,所以需要用vim的diff代替它,实现方法是在全局配置文件中增加:[extensions] hgext.extdiff = [extdiff] cmd.vdiff =...
分类:其他 时间:2014-03-18 11:48:31 收藏:0 阅读:471
有时候需要通过网页的形式监控apache进程的状态,好在apache会提供某些特定模块来解决这个问题。看下文:第一、加载mod_status.so,mod_info.so模块#LoadModulestatus_modulemodules/mod_status.so#LoadModuleinfo_modulemodules/mod_info.so去掉#,加载mod_status.so,mod_inf..
分类:其他 时间:2014-03-18 10:40:36 收藏:0 阅读:462
QTextEdit*m_textShower;//显求读取文件内容的文本m_textShower=newQTextEdit;(1)设置字体的方法..............QFonttextFont;textFont.setPointSize(16);m_textShower->setFont(textFont);(2)设置编辑为只读属性的方法m_textShower->setReadOnly(true);(3)设置文字的方..
分类:其他 时间:2014-03-19 12:10:48 收藏:0 阅读:935
1106107108109110161997
上一页3239936下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!