473,786 Members | 2,660 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to read and write a key_value from a file

Hello, I want to ask a question for a friend of mine.
(I haven't learned C# yet.)

How to read and write a key_value from a file.

I know in Java programming,cou ld do like the following:
=============== =============== =
ResourceBundle xBundle = ResourceBundle. getBundle("xxxx ");
String testStr = xBundle .getString("tes tStr")
=============== =============== =
In this way I can read the string value "testStr" from the
xxxx.properties .

So now the question is :
In the C# programming, is there any way to read and write
a string value(key_value ) from a file. And the file is
"*.conf"¡£

Thanks.
Nov 16 '05 #1
2 2581
The equivalent in c# is ResourceManager .

When you create a .NET form (C# code) you will find a statement called

System.Resource s.ResourceManag er resources = new
System.Resource s.ResourceManag er(typeof(Form1 ));

After getting resources you can get key and value by calling GetObject
Method.

For example to get the list of images you can say

resources.GetOb ject(""imageLis t1.ImageStream" );

One more example may be

this.axListView 1.OcxState =
((System.Window s.Forms.AxHost. State)(resource s.GetObject("ax ListView1.OcxSt a
te")));

--
Shak
(Houston)


"IAMI" <wa**********@1 63.com> wrote in message
news:ON******** ******@TK2MSFTN GP11.phx.gbl...
Hello, I want to ask a question for a friend of mine.
(I haven't learned C# yet.)

How to read and write a key_value from a file.

I know in Java programming,cou ld do like the following:
=============== =============== =
ResourceBundle xBundle = ResourceBundle. getBundle("xxxx ");
String testStr = xBundle .getString("tes tStr")
=============== =============== =
In this way I can read the string value "testStr" from the
xxxx.properties .

So now the question is :
In the C# programming, is there any way to read and write
a string value(key_value ) from a file. And the file is
"*.conf"¡£

Thanks.

Nov 16 '05 #2
I will foward this to my friend.

Thank you very much.

"Shakir Hussain" <sh**@fakedomai n.com> дÈëÓʼþ
news:ev******** ******@TK2MSFTN GP09.phx.gbl...
The equivalent in c# is ResourceManager .

When you create a .NET form (C# code) you will find a statement called

System.Resource s.ResourceManag er resources = new
System.Resource s.ResourceManag er(typeof(Form1 ));

After getting resources you can get key and value by calling GetObject
Method.

For example to get the list of images you can say

resources.GetOb ject(""imageLis t1.ImageStream" );

One more example may be

this.axListView 1.OcxState =
((System.Window s.Forms.AxHost. State)(resource s.GetObject("ax ListView1.OcxSt a te")));

--
Shak
(Houston)


"IAMI" <wa**********@1 63.com> wrote in message
news:ON******** ******@TK2MSFTN GP11.phx.gbl...
Hello, I want to ask a question for a friend of mine.
(I haven't learned C# yet.)

How to read and write a key_value from a file.

I know in Java programming,cou ld do like the following:
=============== =============== =
ResourceBundle xBundle = ResourceBundle. getBundle("xxxx ");
String testStr = xBundle .getString("tes tStr")
=============== =============== =
In this way I can read the string value "testStr" from the
xxxx.properties .

So now the question is :
In the C# programming, is there any way to read and write
a string value(key_value ) from a file. And the file is
"*.conf"¡£

Thanks.


Nov 16 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2414
by: zhushenli | last post by:
Hello all, How to random read/write the file in fstream? BTW, how to access the file in block? Regards, Davy
5
3164
by: Martin Svensson | last post by:
Hello! I need some help/recommendations on how to do the following. I have a program that writes an IP address two control numbers and a date to file, on one line. It's a basic text file and it looks like this: ----- beginning of file ----- 192.168.0.1 0 0 2004-08-01 192.168.0.2 1 0 2004-08-21 192.168.0.4 0 1 2004-08-12
8
31014
by: Patrik Malmström | last post by:
How do I read, write a file binary? I want to open, say, file.exe read it in to the program, then write it out to file2.exe. Like file copy, anyone have a code sample?
2
14230
by: Paul M | last post by:
Hy all In c# how can I read/write ini file? I need this for back compatibility. Is possible little example? For future, what is the best practice to replace ini file? app.config? xml files?? TIA, Paul
0
5683
by: Ahmed A. | last post by:
This will be very helpfull for many! Using RichTextBox Read/Write Unicode File http://www.microsoft.com/indonesia/msdn/wnf_RichTextBox.as p Private Function ReadFile(ByVal myfile As String) As String Dim myFileStream As Stream = File.Open(myfile, FileMode.Open)
3
4684
by: Trint Smith | last post by:
Is there anything like this that will allow a url address instread of a drive letter?: Dim fw As StreamWriter fw = New StreamWriter("D:\file.txt", True) fw.WriteLine(ex) fw.Close() The reason I need to do this is it has to be done on the web server. Thanks,
2
4510
by: David Lozzi | last post by:
Howdy, Trying to open and read/write another aspx file from my aspx page. Basically I want to be able to update my aspx files from the website. Here's my code so far: Dim path As String = Server.MapPath("tester.aspx") Dim din As New StreamReader(IO.File.OpenRead(path)) Dim conts As String = din.ReadToEnd
10
7613
by: lorenzogordon | last post by:
Hi there, I'd greatly appreciate any insights into the following problem: I've got PHP running fine on IIS (OS: Server 2003, SP1; IIS: 6.0; PHP: 4.3.11). In PHP, the user uploads a file, which is then processed and the contents are inserted into a new file, created in PHP, onto the server.
2
2414
by: Let_Me_Be | last post by:
Hi, I'm curently developing an aplication which gets called many times, and shoudl return a new state each time, I have implemented load/save state to work with istream/ostream. The problem is the aplication is runned many times - paralel. Is it possible to have a protected file (read-write exclusive/paralel reads), without installing a database engine? Idealy this should work under both windows and linux, but linux will be sucifient.
9
2131
mickey0
by: mickey0 | last post by:
Hi, I have one problem; I must read a html like this; <html> <body> Hello </body> </html> I read this in a string (correct?) and after I have to do some changes to it and write it on disk but in this way:
0
9655
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10363
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10169
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9964
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7517
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6749
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5398
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4067
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3670
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.