博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
处理文本
阅读量:6072 次
发布时间:2019-06-20

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

using System;

using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp3

{
class Program
{
static void Main(string[] args)
{

string path = @"C:\Users\alan.wang\Desktop\1.txt";// 文件路径

string pathWrite = @"C:\Users\alan.wang\Desktop\4.txt";// 文件路径
FileStream filestream = new FileStream(path, FileMode.Open);

byte[] bt = new byte[filestream.Length];

//调用read读取方法

filestream.Read(bt, 0, bt.Length);
string str = System.Text.Encoding.Default.GetString(bt);

System.Text.RegularExpressions.Regex reg;

string regexCode = @"MultiLanguage.GetRes\(.*?\)";
reg = new System.Text.RegularExpressions.Regex(regexCode);
System.Text.RegularExpressions.MatchCollection mc = reg.Matches(str);
List<string> list = new List<string>();
string liststr = "";
for (int i = 0; i < mc.Count; i++)
{
if (i == 0)
{
liststr = mc[i].Value + "\r\n";
}
else
{
liststr = liststr + mc[i].Value + "\r\n";
}
}
using (FileStream fileStream = File.Create(pathWrite))
{
byte[] bytes = new UTF8Encoding(true).GetBytes(liststr);
fileStream.Write(bytes, 0, bytes.Length);
fileStream.Close();
}

}

}

}

 

 

 

图片前端传给后台Base64 转二进制    Byte[] fileContent = Convert.FromBase64String(base64Content);

转载于:https://www.cnblogs.com/MasterLin/p/10313247.html

你可能感兴趣的文章
【Linux】目录文件权限的查看和修改【转】
查看>>
Struts2 的学习笔记(三) Struts2 数据传输
查看>>
JPDA 架构研究20 - JDI的事件请求和处理模块
查看>>
Intellij IDEA界面设置
查看>>
移动端点击复制当前url(兼容iOS,安卓)
查看>>
springboot+2个mongoTemplate
查看>>
你的命运不是一头骡子
查看>>
阿里技术总监郭东白:创新之歌该如何唱
查看>>
启动hdfs报java.io.IOException: Premature EOF from inputStream错误
查看>>
Spring的Java配置方式简单示例
查看>>
Mozilla称Edge拥抱Chromium会伤害互联网的健康发展
查看>>
shell脚本,变量、data用法
查看>>
MySQL启动报“[Warning] Buffered warning: Changed limits: max_open_files: 1024 (requested 15000)”...
查看>>
Nexus Repository Manager 搭建私有docker仓库
查看>>
Python RPC 之 Thrift
查看>>
ThinkPHP5
查看>>
MySQL级联删除的问题
查看>>
php数据库类
查看>>
阿里巴巴Java开发手册
查看>>
【精】H5移动端webapp开发(快装app)项目案例
查看>>