Write a string to a file using default encoding : Unicode UTF16 « Internationalization I18N « C# / C Sharp






Write a string to a file using default encoding

 
//http://tinyerp.codeplex.com/
//GNU Library General Public License (LGPL)
//-----------------------------------------------------------------------
// <copyright file="SysUtil.cs" company="Pyramid Consulting">
//     Copyright (c) Pyramid Consulting. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;

namespace Bamboo.Core.Common
{
    public class SysUtil
    {
        /// <summary>
        /// write a string to a file using default encoding
        /// </summary>
        /// <param name="strFilePath">path of the dest file</param>
        /// <param name="strContent">content</param>
        /// <returns>return 0 on succeed,otherwise throw a exception</returns>
        public static int WriteFile(String strFilePath, String strContent)
        {
            System.Text.Encoding encDefault=System.Text.Encoding.GetEncoding(0);
            System.IO.FileStream fs = new System.IO.FileStream(strFilePath, System.IO.FileMode.Create, System.IO.FileAccess.Write, System.IO.FileShare.ReadWrite);
            System.IO.BinaryWriter bw = new System.IO.BinaryWriter(fs);
            try
            {
                bw.Write(encDefault.GetBytes(strContent));
            }
            finally
            {
                bw.Close();
                fs.Close();
            }
            return 0;
        }
    }
}

   
  








Related examples in the same category

1.Write the UTF-16 encoded bytes of the source stringWrite the UTF-16 encoded bytes of the source string
2.Write the UTF-8 and ASCII encoded byte arraysWrite the UTF-8 and ASCII encoded byte arrays
3.Write special symbol to Text file: pi (\u03A0r^2)Write special symbol to Text file: pi (\u03A0r^2)
4.Replace utf-16 encoding with utf-8 encoding
5.Returns the number of additional bytes in a UTF-8 character sequence (not including the first byte).
6.Convert a string from one charset to another charset
7.Return the value of CharSize and display it.
8.Returns the value encoded in Big/Little Endian (PPC, XDR) format.