C#对文本进行简单的写入

 string path = System.IO.Directory.GetCurrentDirectory();//相对路径
 FileInfo fi = new FileInfo(path + @"\Data\unity.txt");
  ////如果该文件存在需要删除重新写入
  if (fi.Exists)
 {
   fi.Delete();
  }
  StreamWriter sw = new StreamWriter(path + @"\Data\StreamingAssets\unity.txt");
   sw.WriteLine(需要写入的内容方法);
   sw.Close();
   MessageBox.Show("写入成功! ^-^ ", "TaoHu", MessageBoxButtons.OK, MessageBoxIcon.None);
 
时间: 2024-10-20 15:05:26

C#对文本进行简单的写入的相关文章

C++文本的读取和写入

1 #include <iostream> 2 #include <sstream> 3 #include <fstream> 4 #include <string> 5 int main(int args, char **argv) 6 { 7 std::ifstream fin("GetDltWDu_7_list.txt", std::ios::in); 8 /*std::ofstream fout("2014_6_20.t

按键精灵 对文本的读取与 写入

2016-05-23 //向文本后一行写入内容-------------------- Call Plugin.File.WriteFileEx("C:\第一个.txt", "来把读取我") Text = Plugin.File.ReadFileEx("C:\第一个.txt")//文档位置你自己改 dim MyArray MyArray = Split(Text, "|") //显示气泡提示信息第几行内容就改下面的数字----

Flex【原创】首尾相连的循环文本滚动简单实现

思路比较简单,准备一个主文本的副本用于辅助滚动,当主文本滚动出界时辅助文本开始滚动. 不废话,上代码. 1 <?xml version="1.0" encoding="utf-8"?> 2 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 3 xmlns:s="library://ns.adobe.com/flex/spark" 4 xmlns:m

富文本内容简单的的增删改查

由于html本身的textarea标签的文本编辑功能较为简单,不能设置文字的样式,因此需要富文本控件来增强textarea的功能.       一些常见的富文本控件有:UEditor.kindeditor.simditor.bootstrap-wysiwyg.wangEditor.CKEditor.tinymce,各有优缺点,网上也有对不介绍,不再赘述. 此处选用tinymce,因其兼容性较好,插入页面也较为简单,此外还有丰富的插件可以扩展功能. 首先,在页面上使用tinymce:1.引入js文

ios富文本的简单使用 AttributedString

富文本,顾名思义就是丰富的文本格式,本文demo使用NSMutableAttributedString //获取富文本    NSMutableAttributedString*attributeString_atts=[[NSMutableAttributedString alloc]initWithString:string];    //背景色    UIColor  *backgroundColor=[UIColor whiteColor];    //字体    UIFont *fon

C++简单读取 &amp; 写入实例

#include <fstream> #include <iostream> using namespace std; int main () { char data[100]; // 以写模式打开文件 ofstream outfile; outfile.open("afile.dat"); cout << "Writing to the file" << endl; cout << "Enter

UILabel添加图片之富文本的简单应用

若想对UILabel添加图片,那么就需要使用NSMutableAttributedString来定义先定义一个普通的label UILabel *lab = [[UILabel alloc]initWithFrame:CGRectMake(10, 100, self.view.frame.size.width-10, 100)]; lab.numberOfLines = 0; [self.view addSubview:lab]; 然后对其定义 //创建富文本 NSMutableAttribut

NSMutableAttributedString(富文本)的简单使用

#import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(20, 84, self.view.frame.size.width-40, self.view.fr

文件文本中简单操作与实际

1.文件打开模式补充:r+ -------- 可读可写w+------- 可写可读a+------可追加可读 2.文件内光标的移动:seek (offset,whence) -----移动的全是字符的字节数offset :光标移动的位数whence : 0:参照文件的开头,t和b都可以用 1:参照光标所在的当前位置 只在b模式用 2:参照文件的末尾 只在b模式用 3.截断文件: truncate(6)6 为字符的长度,汉字为3个b 字母为1 个.保留0-6 的字节数 原文地址:https://w