码迷,mamicode.com
首页 >  
搜索关键字:文件句柄    ( 730个结果
python的with用法
转自http://blog.kissdata.com/2014/05/23/python-with.htmlWith语句是什么?有一些任务,可能事先需要设置,事后做清理工作。对于这种场景,Python的with语句提供了一种非常方便的处理方式。一个很好的例子是文件处理,你需要获取一个文件句柄,从文件...
分类:编程语言   时间:2015-08-21 18:54:37    阅读次数:160
网络篇----断点下载
#import "HMViewController.h"#import "DACircularProgressView.h"@interface HMViewController () - (IBAction)download:(UIButton *)sender;/** * 用来写数据的文件句柄....
分类:其他好文   时间:2015-08-13 17:54:37    阅读次数:108
网络篇----下载大文件
#import "HMViewController.h"@interface HMViewController () /** * 用来写数据的文件句柄对象 */@property (nonatomic, strong) NSFileHandle *writeHandle;/** * 文件的总大小.....
分类:其他好文   时间:2015-08-13 17:34:25    阅读次数:136
PHP读取纯真IP地址数据库
<?php /*-------------------------------------------------- ip2address?[qqwry.dat] --------------------------------------------------*/ class?ip?{ var?$fh;?//IP数据库文件句柄 var?$first;?...
分类:数据库   时间:2015-08-11 08:39:57    阅读次数:167
perl use FileHandle;打开多个文件
use FileHandle;my %fh;my @filehandlename=("A","B","C"); ##文件句柄的名字;for my $filehandlename (@filehandlename){ $fh{$filehandlename}=FileHandle->new("> $....
分类:其他好文   时间:2015-08-09 00:13:12    阅读次数:133
python文本文件,生成指定的文件格式
import osimport sysimport string#在一个特定的模式打开指定的文件,获取文件句柄def getFileIns(filePath,model): print("打开文件") print(filePath) print(model) return o...
分类:编程语言   时间:2015-08-08 19:41:57    阅读次数:170
python处理XML解析(读取)
#-*-coding:utf-8-*- __author__=‘magicpwn‘ fromxml.etreeimportElementTree #向parse()传递一个打开的文件句柄,读取解析并返回一个Elementtree对象 withopen(‘C:/XML/6.xml‘,‘rt‘)asf: tree=ElementTree.parse(f) #printtree #遍历解析树,实用iter()创建一个生成器,迭代..
分类:编程语言   时间:2015-08-07 07:13:01    阅读次数:250
理解python的with语句
有一些任务, 可能事先需要设置, 事后做清理工作. 对于这种场景, python的with语句提供了一种非常方变的处理方式, 一个很好的例子是文件处理. 你需要获取一个文件的句柄, 从文件中读取数据, 然后关闭文件句柄. 如果不用with语句, 代码如下:file = open("/tmp/fo.....
分类:编程语言   时间:2015-08-05 00:30:50    阅读次数:226
Snail—OC学习之文件操作(读写)
#import int main(int argc, const char * argv[]) { @autoreleasepool { /* NSFileHandle 文件句柄 fileHandleForUpdatingAtPath 读写方式打开文件 fileHandleForReadin...
分类:其他好文   时间:2015-07-28 16:03:52    阅读次数:111
java读取txt文件
/** * 功能:Java读取txt文件的内容 * 步骤:1:先获得文件句柄 * 2:获得文件句柄当做是输入一个字节码流,需要对这个输入流进行读取 * 3:读取到输入流后,需要读取生成字节流 * 4:一行一行的输出。readline()。 * 备注:需要考虑的是异常情况 * @par...
分类:编程语言   时间:2015-07-18 10:48:39    阅读次数:139
730条   上一页 1 ... 61 62 63 64 65 ... 73 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!