码迷,mamicode.com
首页 > Windows程序 > 详细

wince下写入数据到csv/txt文件中

时间:2014-12-08 10:28:45      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   for   on   

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using SmartDeviceProject1.WebReference;
using System.Reflection;

namespace SmartDeviceProject1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        
        StreamWriter sw = null;
        private void button1_Click(object sender, EventArgs e)
        {
            string path = @"\My Documents\入库.csv";//保存文件的路径
            try
            {
                if (File.Exists(path))//如果文件已创建
                {
                    this.sw = File.AppendText(path);
                    this.sw.WriteLine("叠加数据,123," + DateTime.Now.ToShortDateString());
                }
                else
                {
                    this.sw = new StreamWriter(path);//如果没有创建
this.sw.WriteLine("新建数据,789," + DateTime.Now.ToShortDateString()); } } catch (Exception ex)//异常处理 { MessageBox.Show(ex.Message); } finally { //清空缓冲区 this.sw.Flush(); //关闭流 this.sw.Close(); } } } }

vs2008测试正常。

wince下写入数据到csv/txt文件中

标签:style   blog   io   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/tiaoma888/p/4150434.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!