码迷,mamicode.com
首页 >  
搜索关键字:open    ( 24465个结果
为什么要提倡“Design Pattern呢
为什么要提倡“Design Pattern呢?根本原因是为了代码复用,增加可维护性。那么怎么才能实现代码复用呢?面向对象有几个原则:开闭原则(Open Closed Principle,OCP)、里氏代换原则(Liskov Substitution Principle,LSP)、依赖倒转原则(Dep...
分类:其他好文   时间:2014-07-09 20:15:39    阅读次数:213
window.open窗口居中和窗口最大化
1、window.open()参数window.open(pageURL,name,parameters)其中:pageURL为子窗口路径name为子窗口句柄parameters为窗口参数(各参数用逗号分隔),如常用的'height=100,width=400,top=0,left=0,toolba...
分类:Windows程序   时间:2014-07-09 19:35:19    阅读次数:403
install the Mondo Rescue utility in Ubuntu 12.04 or 12.10.
1. Open a terminal window.2. Type in the following commands, then hit Enter after each.wget ftp://ftp.mondorescue.org/ubuntu/`lsb_release -r|awk '{pri...
分类:其他好文   时间:2014-07-09 17:51:26    阅读次数:272
关于file文件操作的头文件 【LINUX】 (转载)
转自:http://blog.csdn.net/figo77ll/article/details/3156052 Linux下如果要对文件进行读取访问,需要包含至少以下两个头文件:#inlcude #inlcude 其中fcntl.h包含了create和open命令,unistd包含了其他的诸如.....
分类:系统相关   时间:2014-07-09 17:31:08    阅读次数:224
vim常用插件-NERDTree
NerdTreeThe NERD tree allows you to explore your filesystem and to open files anddirectories. It presents the filesystem to you in the form of a tree ...
分类:其他好文   时间:2014-07-09 16:24:53    阅读次数:193
python知识点(07-08)
python: 循环else: while true: if x>1: print() break else: print() 文件循环: for line in open(‘test.txt’): print(line,end=’’) 获...
分类:编程语言   时间:2014-07-09 15:52:47    阅读次数:204
redis学习(一)
Introduction to RedisRedis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys ca...
分类:其他好文   时间:2014-07-09 15:35:56    阅读次数:211
HDFS中的读写数据流
1.文件的读取在客户端执行读取操作时,客户端和HDFS交互过程以及NameNode和各DataNode之间的数据流是怎样的?下面将围绕图1进行具体讲解。 图 1 客户端从HDFS中读取数据1)客户端通过调用FileSystem对象中的open()函数来读取它做需要的数据。FileS...
分类:其他好文   时间:2014-07-09 13:58:58    阅读次数:824
python基础教程_学习笔记21:文件和素材
文件和素材 打开文件 open函数用来打开文件,语法如下: open([name[,mode[,buffering]])   open函数使用一个文件名作为唯一的强制参数,然后返回一个文件对象。模式(mode)和缓冲(buffering)参数都是可选的。 >>> f=open(r'D:\software(x86)\Python27\README.txt')   如果文件不存在,则出...
分类:编程语言   时间:2014-07-09 10:45:07    阅读次数:151
HDFS 读取、写入、遍历目录获取文件全路径
1、从HDFS中读取数据 Configuration conf = getConf(); Path path = new Path(pathstr); FileSystem fs = FileSystem.get(conf); FSDataInputStream fsin= fs.open(path ); BufferedReader br =null; Strin...
分类:其他好文   时间:2014-07-09 09:17:40    阅读次数:290
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!