- 浏览: 13362 次
- 性别:
- 来自: 深圳
最新评论
-
xiao_feng68:
找不到端口呢,这是怎么回事?
java发送短信之AT指令 -
zhuhuqiu:
怎么没有群发部分?
java发送短信之AT指令
本人是JAVA开发 由于开发的人多了 有的人开发环境编码格式也不同 有的是GBK 有的是UTF-8 代码中更是层出不穷
直接导致项目中中文的类乱码 写代码不能加注释的囧地 为了解决此问题编写了此软件 分享出来希望能帮助到其他人
部分代码如下:
public int[] Count=new int[3];//存储计数信息 public string SelectPath = null;//存储选择的路径 private Profile profile = new Profile(); string confitemp = "Configuration";//配置的总节点 /// <summary> /// 判断文件编码格式是什么 /// </summary> /// <param name="stream"></param> /// <returns></returns> public static Encoding GetEncoding(FileStream stream) { Encoding targetEncoding = Encoding.Default; if (stream != null && stream.Length >= 2) { //保存文件流的前4个字节 byte byte1 = 0; byte byte2 = 0; byte byte3 = 0; byte byte4 = 0; //保存当前Seek位置 long origPos = stream.Seek(0, SeekOrigin.Begin); stream.Seek(0, SeekOrigin.Begin); int nByte = stream.ReadByte(); byte1 = Convert.ToByte(nByte); byte2 = Convert.ToByte(stream.ReadByte()); if (stream.Length >= 3) { byte3 = Convert.ToByte(stream.ReadByte()); } if (stream.Length >= 4) { byte4 = Convert.ToByte(stream.ReadByte()); } //根据文件流的前4个字节判断Encoding //Unicode {0xFF, 0xFE}; //BE-Unicode {0xFE, 0xFF}; //UTF8 = {0xEF, 0xBB, 0xBF}; if (byte1 == 0xFE && byte2 == 0xFF)//UnicodeBe { targetEncoding = Encoding.BigEndianUnicode; } if (byte1 == 0xFF && byte2 == 0xFE && byte3 != 0xFF)//Unicode { targetEncoding = Encoding.Unicode; } if (byte1 == 0xEF && byte2 == 0xBB && byte3 == 0xBF)//UTF8 { targetEncoding = Encoding.UTF8; } //恢复Seek位置 stream.Seek(origPos, SeekOrigin.Begin); } return targetEncoding; } /// <summary> /// 通过给定的文件流,判断文件的编码类型 /// </summary> /// <param name="fs">文件流</param> /// <returns>文件的编码类型</returns> public Encoding GetType(FileStream fs) { byte[] Unicode = new byte[] { 0xFF, 0xFE, 0x41 }; byte[] UnicodeBIG = new byte[] { 0xFE, 0xFF, 0x00 }; byte[] UTF8 = new byte[] { 0xEF, 0xBB, 0xBF }; //带BOM Encoding reVal = Encoding.Default; BinaryReader r = new BinaryReader(fs,Encoding.Default); int i; int.TryParse(fs.Length.ToString(), out i); byte[] ss = r.ReadBytes(i); if (IsUTF8Bytes(ss) || (ss[0] == 0xEF && ss[1] == 0xBB && ss[2] == 0xBF)) { reVal = Encoding.UTF8; } else if (ss[0] == 0xFE && ss[1] == 0xFF && ss[2] == 0x00) { reVal = Encoding.BigEndianUnicode; } else if (ss[0] == 0xFF && ss[1] == 0xFE && ss[2] == 0x41) { reVal = Encoding.Unicode; } r.Close(); return reVal; } /// <summary> /// 判断是否是不带 BOM 的 UTF8 格式 /// </summary> /// <param name="data"></param> /// <returns></returns> private bool IsUTF8Bytes(byte[] data) { int charByteCounter = 1; //计算当前正分析的字符应还有的字节数 byte curByte; //当前分析的字节. for (int i = 0; i < data.Length; i++) { curByte = data[i]; if (charByteCounter == 1) { if (curByte >= 0x80) { //判断当前 while (((curByte <<= 1) & 0x80) != 0) { charByteCounter++; } //标记位首位若为非0 则至少以2个1开始 如:110XXXXX...........1111110X if (charByteCounter == 1 || charByteCounter > 6) { return false; } } } else { //若是UTF-8 此时第一位必须为1 if ((curByte & 0xC0) != 0x80) { return false; } charByteCounter--; } } if (charByteCounter > 1) { throw new Exception("非预期的byte格式"); } return true; } private void butttrun_Click(object sender, EventArgs e) { this.butttrun.Enabled = false; this.buttonSelect.Enabled = false; Count = new int[3];//存储计数信息 if (SelectPath != null) { this.Tag = this.Text; this.Text = "正在努力拷贝项目请稍候....(请勿关闭本软件)"; List<string> files = GetFileName(SelectPath);//要转码的所有文件 int copycount = GetCopyFileCount(SelectPath, files); this.Text = "正在努力转码 请稍候....(请勿关闭本软件)"; foreach (var sub in files) { Transcoding(sub); } this.Text = "" + this.Tag; LogBLL.Err("转码总计: 成功" + Count[0] + "个 失败 " + Count[1] + "个 不存在 " + Count[2] + "个 拷贝" + copycount + "个"); MessageBox.Show(this, "转换文件总计: 成功" + Count[0] + "个 失败 " + Count[1] + "个 不存在 " + Count[2] + "个 拷贝" + copycount + "个", "温馨提示", MessageBoxButtons.OK, MessageBoxIcon.Question); } else { MessageBox.Show(this, "请先选择您要处理的文件", "温馨提示", MessageBoxButtons.OK, MessageBoxIcon.Question); } this.butttrun.Enabled = true ; this.buttonSelect.Enabled = true; } /// <summary> /// 获取资源文件所有文件 /// </summary> /// <param name="SelectPath"></param> /// <returns></returns> public int GetCopyFileCount(string SelectPath, List<string> files) { int i = 0; string[] fileName = Directory.GetFiles(SelectPath, "*.*", SearchOption.AllDirectories); foreach (var file in fileName) { if (!files.Contains(file)) { try { int lastlen = file.LastIndexOf("\\");//结束的/ int startlen = file.IndexOf("\\");//开始的/ string temp = file.Substring(lastlen + 1); string tempqian = file.Substring(startlen + 1, (lastlen - startlen) - 1); Generate(tempqian);//生成一个文件夹 File.Copy(file, System.Environment.CurrentDirectory + "\\" + tempqian + "\\" + temp, true); i++; } catch (Exception e) { LogBLL.Err("文件[" + file + "]拷贝失败[" + e .Message+ "]"); } } } return i; } /// <summary> /// 转码指定文件转换为固定编码格式 /// </summary> public void Transcoding(string filename) { Encoding en2 = Encoding.Default; if (checkBoxutf8.Checked) { en2 = Encoding.UTF8; } else if (checkBoxgbk.Checked) { en2 = Encoding.GetEncoding("GBK"); } else { en2 = Encoding.GetEncoding("GB2312"); } if (File.Exists(filename)) { try { string fstr = null; FileStream fs = new FileStream(filename, FileMode.Open); Encoding targetEncoding = GetType(fs); fs.Close(); using (StreamReader sr = new StreamReader(filename, targetEncoding)) { fstr = sr.ReadToEnd(); } int lastlen=filename.LastIndexOf("\\");//结束的/ int startlen=filename.IndexOf("\\");//开始的/ string temp = filename.Substring(lastlen+1); string tempqian = filename.Substring(startlen+1, (lastlen - startlen)-1); //Generate(tempqian);//生成一个文件夹 using (StreamWriter st = new StreamWriter(tempqian + "\\" + temp, false, en2)) { st.Write(fstr); } Count[0] = Count[0]+1; LogBLL.Err("文件[" + filename + "]转换成功"); } catch (Exception e) { Count[1] = Count[1]+1; LogBLL.Err("文件[" + filename + "]转换失败[" + e .Message+ "]"); } } else { Count[2] = Count[2]+1; LogBLL.Err("文件[" + filename + "]不存在"); } } /// <summary> /// 创建文件夹 /// </summary> /// <param name="dirMu"></param> private void Generate(string dirMu) { if (!Directory.Exists(dirMu)) { Directory.CreateDirectory(dirMu); } else { //System.IO.DirectoryInfo path = new System.IO.DirectoryInfo(dirMu); //foreach (System.IO.FileInfo f in path.GetFiles()) //{ // f.Delete(); //} } } /// <summary> /// 选择文件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void buttonSelect_Click(object sender, EventArgs e) { this.butttrun.Enabled = false; this.buttonSelect.Enabled = false; FolderBrowserDialog FileDialogSelectFile = new FolderBrowserDialog(); DialogResult result = FileDialogSelectFile.ShowDialog(); SelectPath = FileDialogSelectFile.SelectedPath; if (result == DialogResult.OK && SelectPath != null) { List<string> names = GetFileName(SelectPath); if (names != null && names.Count > 0) { listViewFile.Clear();//清空列记录 ColumnHeader cZh = new ColumnHeader();//创建一个列 cZh.Text = "File Name"; cZh.Width = 433; //列名 listViewFile.Columns.AddRange(new ColumnHeader[] { cZh });//将这两列加入listView1 for (int i = 0; i < names.Count; i++) { ListViewItem lvi = new ListViewItem(new string[] { names[i] }, -1);//创建列表项 listViewFile.Items.Add(lvi);//将项加入listView1列表中 } MessageBox.Show(this, "总共发现" + names.Count+"相应的文件", "温馨提示", MessageBoxButtons.OK, MessageBoxIcon.Question); } else { SelectPath = null; MessageBox.Show(this, "没有找到相应的文件", "温馨提示", MessageBoxButtons.OK, MessageBoxIcon.Question); } } this.butttrun.Enabled = true; this.buttonSelect.Enabled = true ; } /// <summary> /// 获取一个路径下所有的文件 /// </summary> /// <param name="SelectedPath"></param> /// <returns></returns> public List<string> GetFileName(string SelectedPath) { List<string> Files = new List<string>(); string Filter = profile.ContentValue(confitemp, "Filter"); string[] files = Filter.Split('|'); foreach (var item in files) { if (item != null && item.StartsWith("*.")) { string[] fileName = Directory.GetFiles(SelectedPath, item, SearchOption.AllDirectories); Files.AddRange(fileName); } } return Files; } /// <summary> /// UTF-8编码格式 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void checkBoxutf8_CheckedChanged(object sender, EventArgs e) { if (sender != null && sender.GetType()==typeof(CheckBox)) { CheckBox checkboxutf8=(CheckBox)sender; if (checkboxutf8.Checked) { this.checkBoxgb2312.Checked = false; this.checkBoxgbk.Checked = false; } } } /// <summary> /// GBK编码格式 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void checkBoxgbk_CheckedChanged(object sender, EventArgs e) { if (sender != null && sender.GetType() == typeof(CheckBox)) { CheckBox checkboxgbk = (CheckBox)sender; if (checkboxgbk.Checked) { this.checkBoxgb2312.Checked = false; this.checkBoxutf8.Checked = false; } } } /// <summary> /// GB2312编码格式 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void checkBoxgb2312_CheckedChanged(object sender, EventArgs e) { if (sender != null && sender.GetType() == typeof(CheckBox)) { CheckBox checkboxutf8 = (CheckBox)sender; if (checkboxutf8.Checked) { this.checkBoxutf8.Checked = false; this.checkBoxgbk.Checked = false; } } } /// <summary> /// 加载次程序的时候启动 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void FileTranscoding_Load(object sender, EventArgs e) { if (File.Exists(profile.StartUpIniFileName)) {} else { profile.xieru(); } } } }
转载请注明http://yuyu456.iteye.com/admin/blogs/1721470
相关推荐
在实际项目中,我们可能需要编写一个完整的编码转换器,这可能涉及到读取文件,检测或指定输入编码,转换后写入文件等功能。例如,`编码转换器.sln`和`编码转换器.suo`很可能是Visual Studio的解决方案文件和用户...
C#编写的Gerber查看器通过解析这些指令,将二维的几何信息转换成可视化图像。它支持常见的Gerber文件格式,如RS-274X,这是当前最广泛使用的Gerber标准。 在使用这款查看器时,用户可以轻松地加载和预览Gerber文件...
在本文中,我们将深入探讨如何在C# Winform应用程序中使用FFmpeg库进行视频格式转换。FFmpeg是一个强大的跨平台的多媒体处理工具,它支持多种音频和视频编码、解码、转换以及流处理功能。在C#环境中,我们可以通过...
在C#编程中,开发一个数字大小写转换器是一个常见的任务,特别是在财务软件或银行系统中,因为这些系统经常需要将阿拉伯数字转换成中文大写,以增强账单和凭证的准确性。本项目"数字大小写转换器"提供了一个完整的...
2. **使用字符串格式化**:如果HTML代码包含变量,转换器可能将它们转换为使用字符串格式化的方法,如`string.Format`或C#6引入的字符串插值。例如,`string greeting = $"<h1>Hello, {username}!</h1>"`; 3. **...
这个"URL编码转换器"项目是用C#语言编写的,旨在解决URI(统一资源标识符)编码过程中遇到的问题,特别是对于搜索引擎优化(SEO)时的需求。下面我们将深入探讨URL编码的相关知识点。 **URL编码基础** URL编码,也...
以下是对“c#编写生成二维码工具”这一主题的详细知识点解析: 1. **二维码基本原理**:二维码(Quick Response Code)是一种二维条形码,由日本Denso Wave公司发明,能够存储更多的数据,包括数字、字母和所有字符...
在本项目中,"C#实现的图像文件转换器源代码"是一个利用C#编程语言编写的程序,用于实现图像文件格式之间的转换。这个源代码是用Visual Studio 2002开发的,但也可以在更新版本的VS(如VS2005)中进行编辑和运行。...
总的来说,C#编写的代码生成器源码项目涉及到C#语言、数据库交互、模板引擎、Visual Studio IDE的使用以及代码生成器的设计与实现等多个方面的知识。学习和理解该项目,不仅可以提升C#编程技能,还能深入了解软件...
在这个“用C#编写的简易计算器”项目中,我们将探讨如何利用C#的基本语法和Windows Forms库来创建一个用户友好的图形界面计算器。 1. **Windows Forms 应用程序** Windows Forms是.NET Framework的一部分,提供了...
本项目名为"C#进制转换器源码",提供了一个用C#编写的实用工具,可以方便地进行2至16进制之间的转换。以下是关于这个项目的详细知识点: 1. **进制的理解**: - 进制是数字系统的基础,用于表示数值。最常见的有二...
总之,“C#编写在线翻译源码下载”项目涵盖了C#编程基础、字符编码、NLP技术、UI设计、事件处理、异步编程以及异常处理等多个关键知识点。通过学习和理解这个源码,开发者不仅可以掌握C#编程技巧,还能深入理解自然...
在本文中,我们将深入探讨如何使用C#编程语言进行批量图片格式转换,这主要涉及到C#中的图像处理...以上就是关于C#批量图片格式转换涉及的主要知识点,理解并掌握这些概念,将有助于你编写出高效且可靠的图像处理程序。
C#的Image类提供了Save方法,通过指定不同的编码器,可以将图像保存为其他格式。例如,转换JPG到BMP,可以通过设置EncoderParameter和Encoder来控制编码过程。 5. 用户交互:在WinForms中,可以通过添加按钮、菜单...
【标题】"文件编码批量转换器"是一款针对文件编码转换的工具,主要应用于解决在C#进行Android开发时,由于同事使用GBK编码而产生的编码不兼容问题。该工具通过一个简洁的WINFORM界面,实现了快速、批量地将GBK编码的...
例如,若要将图片转换为PNG格式,我们需找到PNG编码器。 4. **设置编码参数**:除了编码器,Save方法还接受EncoderParameters对象作为参数,用于设置保存图像时的编码参数,如质量、颜色空间等。对于某些特定格式,...
本资源“C#实现图片转换格式源码_(0601).rar”提供了用C#编写的代码,用于实现图片格式的转换。源码的实践与学习可以帮助开发者深入理解图像处理和C#编程技巧。 1. 图像处理基础: 在C#中,我们可以使用System....
在C#项目中,可以使用NuGet包管理器引入相应的音频编码库,例如NAudio,这是一个强大的音频处理库,支持多种音频格式的读写和转换。 "archiecodec1"可能是实现这些功能的一个示例项目或代码文件,包含了具体的C#...