- 浏览: 160502 次
- 性别:
- 来自: 保山腾冲
文章分类
最新评论
-
TNTDoctor:
谢谢,标记一下,有空来看看
(转)Haskell与范畴论 -
t173625478:
文章一般般,不够透彻,以至于误解了很多函数式特性的由来和作用。 ...
(转)函数式编程另类指南 -
liyiwen007:
学习了!
很受益!
用AGG实现高质量图形输出(二) -
hqs7636:
感谢!!!!!!!
《learn to tango with D》译文 -
rocex:
多谢,刚好用到。
《learn to tango with D》译文
tango.io.device.File (r4796)
License:
BSD style: see license.txt
Version:
Mar 2004: Initial release Dec 2006: Outback release Nov 2008: relocated and simplified
Author:
Kris, John Reimer, Anders F Bjorklund (Darwin patches), Chris Sauls (Win95 file support)
1 2 3 4 5 |
// 打开一个文件用于读 auto from = new File ("test.txt"); //直接流到控制台 Stdout.copy (from); |
1 2 3 4 5 6 7 8 9 |
// 打开一个文件用于读。 auto from = new File ("test.txt"); // 打开另一个文件用于写。 auto to = new File ("copy.txt", File.WriteCreate); // 复制文件并关闭。 to.copy.close; from.close; |
1 2 3 |
auto file = new File ("test.txt"); auto content = file.load; file.close; |
或用File中的一个方便的静态函数:
1
|
auto content = File.get ("test.txt");
|
得到类似结果的一个更明确的版本:
1 2 3 4 5 6 7 8 9 |
// 打开一个文件用于读。 auto file = new File ("test.txt"); //创建一个数组容纳整个文件。 auto content = new char [file.length]; //读取文件内容。返回值是读取的字节数。 auto bytes = file.read (content); file.close; |
相反,我们可以直接写内容到一个文件中:
1 2 3 4 5 |
//打开一个用于写的文件。 auto to = new File ("text.txt", File.WriteCreate); //写一个内容的数组到这个文件中。 auto bytes = to.write (content); |
有等价的静态函数, File.set()和 File.append(),分别设置和添加文件内容。
文件可以幸福地用随机I/O处理。在这里我们用seek()重新配置(relocate)这个文件指针。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
// 打开一个文件用于读和写。 auto file = new File ("random.bin", File.ReadWriteCreate); //写一些数据。 file.write ("testing"); // 退到文件开始 file.seek (0); // 再次读回数据。 char[10] tmp; auto bytes = file.read (tmp); file.close; |
编译时带上 -version=Win32SansUnicode 参数以得到Win95 & Win32s的文件支持。
返回:失败时返回false。
发表评论
-
tango.text.convert.Utf 翻译
2009-07-23 16:59 822tango.text.convert.Utf(r4809 ... -
tango.io.Buffer 翻译
2009-07-23 13:58 1103(提交后发觉内容不在了 ... -
tango.io.device.Conduit 翻译
2009-07-23 13:56 809tango.io.device.Conduit (r48 ... -
tango.core.Exception 翻译
2009-07-20 19:29 881tango.core.Exception(r4796) ... -
tango.io.Console 翻译
2009-07-19 14:03 956tango.io.Console (r4795) Li ... -
tango.io.digest.Digest 翻译
2009-07-19 14:00 875tango.io.digest.Digest(r4795 ... -
tango.io.digest.Crc32 翻译
2009-07-19 13:59 853tango.io.digest.Crc32 (r4795 ... -
tango.io.UnicodeFile 翻译
2009-07-19 13:58 788tango.io.UnicodeFile (r4795) ... -
tango.text.Search 翻译
2009-07-18 20:28 1003tango.text.Search License: ... -
tango.sys.win32.CodePage 翻译
2009-07-18 20:26 896tango.sys.win32.CodePage(r47 ... -
tango.sys.Environment 翻译
2009-07-18 20:25 872tango.sys.Environment Lice ... -
tango.text.convert.Integer 翻译
2009-07-18 20:24 908tango.text.convert.Integer(r ... -
tango.text.convert.DateTime 翻译
2009-07-18 20:22 771tango.text.convert.DateTime ... -
tango.text.convert.TimeStamp 翻译
2009-07-18 20:19 912tango.text.convert.TimeStamp ... -
tango.text.Ascii 翻译
2009-07-17 23:12 922tango.text.Ascii(r4792) Li ... -
tango.text.convert.Layout 翻译
2009-07-17 23:10 971tango.text.convert.Layout ... -
tango.io.File 翻译
2009-07-17 21:35 780tango.io.File License: BS ... -
tango.text.Util 翻译
2009-07-17 11:50 966tango.text.Util(r4774) Lice ... -
tango.text.Text 翻译
2009-07-16 10:20 980tango.text.Text(r4774) Lice ... -
tango.io.FileScan 翻译
2009-07-11 23:20 866tango.io.FileScan (r4774) ...
相关推荐
设备服务器(Device Servers)负责提供对物理设备或者软件功能的接口。Tango还提供了多种工具和扩展,例如内置工具、归档工具、图形用户界面(GUI)构建工具以及各种语言的绑定工具,如Python、Java等。 开发者指南详述...
### Windows安装TANGO教程知识点详解 #### 一、前言 本教程旨在详细介绍如何在Windows 10操作系统上搭建TANGO环境。TANGO是一种广泛应用于分布式控制系统的框架,尤其适用于科学仪器与工业自动化领域的应用。本文将...
探戈标签Clojure 库,用于根据来自 tango.info 网站的数据自动标记探戈歌曲。执照版权所有 :copyright: 2014 Bruno Alfirević 根据 Eclipse 公共许可证分发 1.0 版或(由您选择)任何更高版本。
谈客视频电话 Tango v3.13.128111 更新时间:2015-01-14 版本:3.13.128111 软件语言:多语言 软件类别:网络语音 软件大小:26.18 MB 适用固件:2.1及更高固件 内置广告:没有广告 适用平台:Android Tango为您...
例如,`tango.io.File`类提供了对文件的基本操作,而`tango.container.List`类则实现了动态列表。这些类通常设计为易于使用且灵活,同时支持模板(templates),使你能以类型安全的方式处理各种数据。 在实际编程中...
Tango视频电话3.13.127894 Tango Video Calls 大小:26.18MB 更新时间:2015-01-12 Tango为您带来免费的高品质视频通话,在3G和Wi-Fi网络上都运行如飞!全世界数百万用户都在使用妙趣横生又简单易用的Tango视频...
tango, 微型&可以插入网络框架 Tango 软件包探戈是一个微型&可以插入的网页框架。当前版本:v0.5.0 版本的历史记录。正在启动要安装 Tango:go get github.com/lunny/tango
标题"PyPI 官网下载 | django-tango-0.3.1.tar.gz"表明这是一个从Python Package Index (PyPI)官方源下载的软件包,名为"django-tango",版本号为0.3.1,其格式是tar.gz。PyPI是Python社区中最主要的第三方软件库...
身份验证 authz是的授权中间件,它基于 。 安装 ...简单的例子 package main import ( ... tg := tango .... HandlerFunc ( func ( ctx * tango. Context ) { sess := sessions . Session ( ctx . Req ()
如果要在乳胶文档中使用这些探戈颜色,请将tango.sty放在某个可以找到乳胶的地方。 例如,在texmf目录中。 Python 您有两种使用颜色的方法。 如果只需要HTML模型,则可以导入TANGO_HTML_COLORS ,这是探戈颜色的...
资源分类:Python库 所属语言:Python 资源全名:tango-comments-0.4.3.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059
agent.sources.redisSource.type = com.tango.logstash.flume.redis.source.RedisSource agent.sources.redisSource.host = localhost agent.sources.redisSource.key = logstash agent.sources.redisSource.batch_...
现在,这意味着基本上所有用户模块(tango.math.BigNum除外,别名为std.bigint,直到另行通知)和大多数tango.core模块都已移植。 doc / examples文件夹中的示例也应该起作用。 我在Linux上进行移植,因此这是经过...
《Python库:tango-articles-0.12.1.tar.gz详解》 在Python的世界里,库扮演着至关重要的角色,它们为开发者提供了丰富的功能,简化了代码编写过程。今天我们将聚焦于一个名为“tango-articles”的库,其版本为...
Tango Tango 是一个微内核易扩展的Go语言Web框架,他兼有Beego的效率和Martini的中间件设计。 最近更新 ... tango.JSON } func (Action) Get() interface{} { if true { return map[string]string{
TangoSDK_Eisa_Unity5.unitypackage
“TANGO的最爱”可能意味着这个主题是对Tango设计风格的一种致敬或特别优化,是Tango风格的忠实体现,因此深受Tango风格爱好者的喜欢。 【标签解析】 “tango”标签直接关联了设计风格,指明了主题的视觉特征。...
将探戈存储git clone git@github.com:kwight/tango.git到您的wp-content/themes/文件夹中: git clone git@github.com:kwight/tango.git cd进入新的Tango主题,然后运行npm install 。 运行npm run build来创建...
TANGO电路原理图库文件的数据结构分析 引言: TANGO软件是一个广泛使用的绘图软件,在我国尤其流行。它能绘制电路原理图和印刷电路板图,其数据文件的结构在相关文献中有介绍,但关于库文件的数据结构信息却很少。...
语言:English,中文 (简体) 自动提取bugly页面的日志数据,并以可读性更高的UI形式展现 自动提取bugly页面的日志数据,并自动弹窗显示;支持多种显示日志方式:1. 自动弹窗提醒;可通过设置,取消自动弹窗提醒(默认...