• 2024-05-27winfrom 程序自己删除自己
    [DllImport("kernel32.dll")]publicstaticexternuintWinExec(stringlpCmdLine,uintuCmdShow);privatevoidbutton1_Click(objectsender,EventArgse){stringvBatFile=Path.GetDirectoryName(Application.ExecutablePath)
  • 2024-02-22C# http请求 ( post方式 JSON格式 )
    直接上代码usingSystem.Net;usingSystem.IO;privatevoidbtnPost_Click(objectsender,EventArgse){this.txtResult.AppendText(DateTime.Now.ToString("yyyy-MM-ddHH:mm:ss")+"准备请求"+"\r\n");//js
  • 2023-09-05dotnet 将控制台 Console
    很多伙伴喜欢使用Console.WriteLine打日志,也许是打起来顺手。打完了之后,又想着,要是能够输出到本机文件那就更好了。既然很多伙伴都有这个想法,那dotnet自然就是有方便的方法让咱来实现此需求。只需要调用Console.SetOut方法,即可将控制台的输出重定向到一个TextWriter里面,只
  • 2023-08-08遇到的问题-streamwriter写文件,内容丢失
    用streamwriter方法将数据写入TXT的时候,怎么到最后运行完发现都没写完,也就是有一些内容丢失了最大可能是你没有在代码中写入完成后,调用close方法关闭StreamWriter  demo_log.Close();
  • 2023-08-03闲来无事,又8月了
    publicvoidSaveLensDisRet(stringfileContent){varfilePath=Directory.GetCurrentDirectory()+"\\data\\LensDisRet\\";if(!Directory.Exists(filePath)){Directory.Create
  • 2023-05-08《asyncio 系列》8. 在 asyncio 中通过流(StreamReader、StreamWriter)来实现 TCP 请求的发送与接收
    楔子在编写网络应用程序时,我们使用了socket库来读取和写入客户端。虽然在构建低级网络库时直接使用套接字很有效,但用法上还是有些复杂,例如启动服务端、等待客户端连接以及向客户端发送数据等等。asyncio的设计者意识到这一点,并构建了网络流API,这些更高级的API比套接字更容
  • 2023-02-27SVG中Path Data数据简化及文件夹所有文件批量导出为图片
    先看效果图片:usingSvg;usingSystem;usingSystem.Collections.Generic;usingSystem.Drawing.Imaging;usingSystem.IO;usingSystem.Text;usingSystem.Text.Regul
  • 2022-12-29C# 运行Power Shell命令并返回结果
    publicstringExecuteInstructions(stringsCmd){try{ProcessmProcess=newProcess();mProcess.StartInfo.UseShellExecute=false;
  • 2022-12-27C# 文件读取FileHelper
    usingSystem.IO;usingSystem.Text;namespaceCallno.Common{publicclassFileHelper{//定义一个用于保存静态变量的实例privatestat
  • 2022-11-01c#中的IO流(文件操作)
    获取磁盘信息DriveInfoforeach(vardivinDriveInfo.GetDrives()){Console.WriteLine(div+"容量:"+div.TotalSize);//获取到盘符}获取文件信息Environment
  • 2022-10-28LogHelper
    usingSystem;usingSystem.IO;usingSystem.Text;namespaceZB.QueueSys.Common{publicclassLogHelper{//privatestaticLogHelperinstance
  • 2022-10-15C#使用StreamReader类和StreamWriter类读写文本文件
    StreamReader类和StreamWriter类可以实现读写文本文件,这两个类都在命名空间System.IO下。usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usi
  • 2022-10-07datax Steam模板
    ./datax.py-rstreamreader-wstreamwriter仅限于Steam方式{"job":{"content":[{"reader":{
  • 2022-09-01C#中流的读取器和编写器(BinaryReader与 BinaryWriter ,StreamReader 与 StreamWriter,StringReader 等)详细介绍
    C#中流的读取器和编写器(BinaryReader与BinaryWriter,StreamReader与StreamWriter,StringReader等)详细介绍智能建造小硕硕士研究生在读,分享编程、人工智
  • 2022-08-26StreamWriter写txt文本乱码问题
    Encodingcode=Encoding.UTF8;TextWritersw=newStreamWriter(path,true,code);sw.WriteLine(content);以上代码在Windows执行写入文件没有出现乱码问题,但是在