wince中对ini文件的操作

下面是代码

class ZT_INI
{
    /************************************************************************/
    /*写操作
     * strSection   节
     * strKey       键
     * strValue     需要写入的值
     * strFilePath  配置文件的全路径(wince中只能使用绝对全路径)
     */
    /************************************************************************/

    public static void PutINI(string strSection, string strKey, string strValue, string strFilePath)
    {
        INICommon(false, strSection, strKey, strValue, strFilePath);
    }

    /************************************************************************/
    /* 读操作
     * strSection   节
     * strKey       键
     * strDefault   如果未找到相应键对应的值则填入此值
     * strFilePath  配置文件的全路径(wince中只能使用绝对全路径)
     * 返回:       指定键的相应值
     * 说明:       如果在文件中未找到相应节则添加,未找到相应键亦添加,如果键对应的值为空串则使用默认值填充ini文件并返回
    /************************************************************************/

    public static string GetINI(string strSection, string strKey, string strDefault, string strFilePath)
    {
        return INICommon(true, strSection, strKey, strDefault, strFilePath);
    }

    private static string[] Split(string input, string pattern)
    {
        string[] arr = System.Text.RegularExpressions.Regex.Split(input, pattern);
        return arr;
    }
    private static void AppendToFile(string strPath, string strContent)
    {
        FileStream fs = new FileStream(strPath, FileMode.Append);
        StreamWriter streamWriter = new StreamWriter(fs, System.Text.Encoding.Default);
        streamWriter.BaseStream.Seek(0, SeekOrigin.End);
        streamWriter.WriteLine(strContent);
        streamWriter.Flush();
        streamWriter.Close();
        fs.Close();
    }
    private static void WriteArray(string strPath, string[] strContent)
    {
        FileStream fs = new FileStream(strPath, FileMode.Truncate);
        StreamWriter streamWriter = new StreamWriter(fs, System.Text.Encoding.Default);
        streamWriter.BaseStream.Seek(0, SeekOrigin.Begin);

        for (int i = 0; i < strContent.Length; i++)
        {
            if (strContent[i].Trim() == "\r\n")
                continue;
            streamWriter.WriteLine(strContent[i].Trim());
        }

        streamWriter.Flush();
        streamWriter.Close();
        fs.Close();
    }
    //INI解析
    private static string INICommon(bool isRead, string ApplicationName, string KeyName, string Default, string FileName)
    {
        string strSection = "[" + ApplicationName + "]";
        string strBuf;
        try
        {
            //a.文件不存在则创建
            if (!File.Exists(FileName))
            {
                FileStream sr = File.Create(FileName);
                sr.Close();
            }
            //读取INI文件
            System.IO.StreamReader stream = new System.IO.StreamReader(FileName, System.Text.Encoding.Default);
            strBuf = stream.ReadToEnd();//读取ini文件
            stream.Close();
        }
        catch (Exception e)
        {
            MessageBox.Show(e.ToString(), "INI文件读取异常");
            return Default;
        }

        string[] rows = Split(strBuf, "\r\n");
        string oneRow;
        int i = 0;
        for (; i < rows.Length; i++)
        {
            oneRow = rows[i].Trim();

            //空行
            if (0 == oneRow.Length)
                continue;

            //此行为注释
            if (‘;‘ == oneRow[0])
                continue;

            //没找到
            if (strSection != oneRow)
                continue;

            //找到了
            break;
        }

        //b.没找到对应的section,创建一节并创建属性
        if (i >= rows.Length)
        {
            AppendToFile(FileName, "\r\n" + strSection + "\r\n" + KeyName + "=" + Default);
            return Default;
        }

        //找到section

        i += 1; //跳过section 

        int bakIdxSection = i;//备份section的下一行

        string[] strLeft;

        //查找属性
        for (; i < rows.Length; i++)
        {
            oneRow = rows[i].Trim();

            //空行
            if (0 == oneRow.Length)
                continue;

            //此行为注释
            if (‘;‘ == oneRow[0])
                continue;

            //越界
            if (‘[‘ == oneRow[0])
                break;

            strLeft = Split(oneRow, "=");

            if (strLeft == null || strLeft.Length != 2)
                continue;

            //找到属性
            if (strLeft[0].Trim() == KeyName)
            {
                //读
                if (isRead)
                {
                    //c.找到属性但没有值
                    if (0 == strLeft[1].Trim().Length)
                    {
                        rows[i] = strLeft[0].Trim() + "=" + Default;
                        WriteArray(FileName, rows);
                        return Default;
                    }
                    else
                    {
                        //找到了
                        return strLeft[1].Trim();
                    }
                }

                //写
                else
                {
                    rows[i] = strLeft[0].Trim() + "=" + Default;
                    WriteArray(FileName, rows);
                    return Default;
                }
            }
        }

        //d.没找到对应的属性,创建之并赋为默认
        rows[bakIdxSection] = rows[bakIdxSection] + "\r\n" + KeyName + "=" + Default;
        WriteArray(FileName, rows);
        return Default;
    }
}

调用方法

//文件路径
string filePath = System.IO.Path.Combine(Common.Root, "config");
//读
string strGet = ZT_INI.GetINI("配置", "ip1", "", filePath);
//写
ZT_INI.PutINI("配置", "ip1", strGet, filePath);
时间: 2024-10-18 18:28:45

wince中对ini文件的操作的相关文章

在 WinCe 平台读写 ini 文件

在上篇文章开发 windows mobile 上的今日插件时,我发现 wince 平台上不支持例如 GetPrivateProfileString 等相关 API 函数.在网络上我并没有找到令我满意的相应代码,因此我手工自己写了相应的方法.命名规则是,在 PC API 函数的名称前面加上 “Ce” 前缀,这是为了在 PC 平台上调试和使用时,不和系统的 API 函数发生冲突.值得注意的是,在写 CeWritePrivateProfileString 方法时,如果改写后的 ini 文件应该比改写前

C#中读写INI文件

INI文件就是扩展名为"ini"的文件.在Windows系统中,INI文件是很多,最重要的就是"System.ini"."System32.ini"和"Win.ini".该文件主要存放用户所做的选择以及系统的各种参数.用户可以通过修改INI文件,来改变应用程序和系统的很多配置.但自从Windows 95的退出,在Windows系统中引入了注册表的概念,INI文件在Windows系统的地位就开始不断下滑,这是因为注册表的独特优点

INI文件的操作(ASP.NET+C#)

INI文件的操作(ASP.NET+C#) (一)INIFile.cs using System; using System.Runtime.InteropServices; using System.Text; namespace CreateWebDir { /// <summary> /// INIFile 的摘要说明. /// </summary> public class INIFile { public string path; public INIFile(string

WPF中textbox加入文件拖放操作

namespace WpfApplication1{ public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); } private void textbox1_PreviewDragOver(object sender, DragEventArgs e) { e.Effects = DragDropEffects.Copy; e.Handled = true; } private

VC中读写INI文件

在VC2015中读写INI文件,文件以ANSI格式保存,如果以UTF-8保存,可能会产生乱码. LPCTSTR  strfile = _T(".//config.ini"); TCHAR value[255] = { 0 }; //读键值 GetPrivateProfileString( _T("ui"), _T("button1"),  _T("default"), value, 200, strfile); //写键值对

CAD转换器中批量转换文件的操作步骤是什么?

CAD转换器中批量转换文件的操作步骤是什么?现在在CAD行业当中,最基础的工作就是绘制CAD图纸,然后绘制完成的图纸都是dwg格式的,所以在进行查看的时候就需要将CAD图纸的格式进行转换,那在CAD转换器中批量转换文件的操作步骤是什么?具体要怎么来进行操作,想要了解的朋友就一起来看看吧,希望能够帮助到你们.以下就是具体操作步骤. 第一步:首先如果小伙伴们电脑中没有安装CAD转换器的,可以在电脑桌面中任意的打开一个浏览器,在浏览器的搜索框中搜索迅捷CAD转换器,点击进入到下载软件的界面当中,选择下

VC关于INI文件的操作

1.查看INI文件是否存在,不存在则创建INI文件 //查看是否有First.ini文件 CFileFind fd; if(fd.FindFile(".First.int")) { MessageBox("找到文件"); } else { MessageBox("没找到文件,创建文件"); CFile file; file.Open(".\First.int",CFile::modeCreate|CFile::modeWrit

java中的File文件读写操作

之前有好几次碰到文件操作方面的问题,大都因为时间太赶而没有好好花时间去仔细的研究研究,每次都是在百度或者博客或者论坛里面参照着大牛们写的步骤照搬过来,之后再次碰到又忘记了,刚好今天比较清闲,于是就在网上找了找Java常用的file文件操作方面的资料.之后加以一番整理,现分享给大家. 直接上源码吧. package com.file; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundEx

windows xp中boot.ini文件修改后电脑异常的解决办法

做个记录:boot.ini文件千万不要乱改,改过之后可能出现系统启动失败,或者启动后异常如屏幕显示异常等等. 因为工作需要,尝试改了一下,只是在最后面加上了一个/3g选项提高虚拟内存的分配而已. 于是出现了后一种问题,网上搜索相关的问题后决定恢复Boot.ini文件试试,果然成功了. 下面是boot.ini文件的内容: [boot loader] timeout=2 default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS [operating sy