English 中文(简体)
阅读和书写档案
原标题:Reading and writing to files
  • 时间:2012-04-23 16:46:50
  •  标签:
  • c#

我有几个问题。 是的,这是家庭工作,我只是试图理解。

这是正在问的。

• • 当点击 but子“Load”时,读到文本箱(txtFilePath:脱光路不是相对的)中规定的档案,并在清单箱中添加发现的物体。

• • 当用户点击“Save”纽吨时,将选定的记录写到txtFilePath(一条绝对的道路不是相对的)档案中,而没有淡化目前内在的价值。

当我仍在学习时,有人可以向我解释。 我在那里有 but子和文字箱,而且有同样的储蓄。 现在,如果你只是想挽救它的话,我就有了与你同样的法典。 但是,从我收集的信息来看,有一个数据库,使你能够装载你保存的档案。 或者,我是否比现在更加困难?

最佳回答

没有数据库。 在这些指示中,record=, 部分选定项目, 须在一份现有档案上填写appile。 仅使用一个溪流和一个作者,以挽救文件到软磁盘上,并且满足了要求。

问题回答

没有数据库。 你做的是与Windows文档系统的互动(例如,你硬盘上的文件)。 页: 1 系统.IO 装载和保存档案的国名空间。

Absolute path refers to the unique location of a file in the drive expressed as a rooted expression; a relative path is a partial path that points to a file relative to a given location:

c:fooarazmy fileshomework.txt
....homework.txt

这些是绝对和相对的道路。

我不敢肯定你在此所期望的细节,但难以全面概述档案系统的工作方式。 您不妨研究处理档案管理的MSDN的基本例子。

很难详细分析这一问题,因为它是一个很广的议题。

For file interaction you must use the System.IO namespace which has classes to easily load and save files.

上述链接是关于MSDN如何利用系统启动文件管理的良好参考。 IO。

亲爱!

如果我正确理解你的话,你的问题是,你是否需要第二次阅读档案,然后才能保存或以其他方式处理,如果与你创建新档案不同的话。

我要说的是“无”。 你们已经将档案内容读到清单箱中。 你只是需要从清单箱(当用户与清单一起做时)获得经过编辑的内容,并将它保存到档案中(无论在哪里做什么)。

<><>For Load:

  1. Read the file line by line
  2. Add each line to the ListBox Items

  1. Open your save file without truncating (ie append to the file)
  2. For each item in your ListBox Items, write it to the save file




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签