博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
文件操作
阅读量:6716 次
发布时间:2019-06-25

本文共 1928 字,大约阅读时间需要 6 分钟。

// Java example code to create a new file    try     {        File file = new File("path and file_name");        boolean success = file.createNewFile();    }    catch (IOException e)    {   }// Java example code to delete a file.    try     {        File file = new File("path and file_name");        boolean success = file.delete();    }     catch (IOException e)    {    }// Java example code to read text from a file.    try     {        BufferedReader infile = new BufferedReader(new FileReader("path and file_name "));        String str;        while ((str = in.readLine()) != null)         {            process(str);        }        infile.close();    }     catch (IOException e)     {        // Exceptions ignored.    }// Java example code to writing to a file.    try     {        BufferedWriter outfile =           new BufferedWriter(new FileWriter("path and file_name "));        outfile.write("a string");        outfile.close();    }    catch (IOException e)    {    }

 

// sample C# code for basic file I/O operations// exceptions ignored for code simplicityclass TestFileIO{    static void Main()     {        string fileName = "test.txt";  // a sample file name        // Delete the file if it exists.        if (System.IO.File.Exists(fileName))        {            System.IO.File.Delete(fileName);        }        // Create the file.        using (System.IO.FileStream fs = System.IO.File.Create(fileName, 1024))         {            // Add some information to the file.            byte[] info = new System.Text.UTF8Encoding(true).GetBytes("This is some text in the file.");            fs.Write(info, 0, info.Length);        }        // Open the file and read it back.        using (System.IO.StreamReader sr = System.IO.File.OpenText(fileName))         {            string s = "";            while ((s = sr.ReadLine()) != null)             {                System.Console.WriteLine(s);            }        }    }}

 

转载地址:http://mdkmo.baihongyu.com/

你可能感兴趣的文章
CSS的隐藏方式
查看>>
让这世界再多一份 GNU m4 教程 (3)
查看>>
马云:未来,我坚信区块链,所有企业都是制造业 ...
查看>>
增加关系型数据库驱动配置同步任务
查看>>
Spotify敏捷模式详解三部曲第二篇:研发过程
查看>>
海康威视高级副总裁浦世亮:我们为什么要推出“AI开放平台”? ...
查看>>
kinmall分析区块链的发展前景和未来趋势
查看>>
企业级java springboot b2bc商城系统开源源码二次开发:服务消费(Ribbon) ...
查看>>
Linux基础命令---网卡操作
查看>>
Linux 磁盘管理基础知识全汇总
查看>>
搭建直播平台需要从CDN“内部”入手
查看>>
Ubuntu下“E: 无法获得锁 /var/lib/apt/lists/lock - open (11: 资源暂时不可用)” ...
查看>>
【南京站报名中!】微服务框架到生态,Apache Dubbo 开发者沙龙
查看>>
linux find xargs
查看>>
家纺行业运行大数据正式发布:告诉你家纺行业形势
查看>>
Android多线程源码详解一:handler、looper、message、messageQueue
查看>>
wordpress robot设置
查看>>
unity3d 中控制手机前后摄像头切换
查看>>
MyCAT核心配置详解
查看>>
selenium启动Chrome配置参数问题
查看>>