473,598 Members | 3,266 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is there a way to write append rewrite a XML Multilingual file

HI !

Is there a way to write append rewrite a XML Multilingual file.

Two parallele aims Multilingual and Xml File format or Xml Lile file
Format.

Is there an editor to do that.

HALLES .

interpretor and translator, and fond of human languages even extinct
ones.

Help me build an ANTI BABEL TOWER

Nov 14 '05 #1
5 1926
On 30 May 2005 12:00:25 -0700, "HALLES" <sl*********@ya hoo.fr> wrote
in comp.lang.c:
HI !

Is there a way to write append rewrite a XML Multilingual file.

Two parallele aims Multilingual and Xml File format or Xml Lile file
Format.

Is there an editor to do that.

HALLES .

interpretor and translator, and fond of human languages even extinct
ones.

Help me build an ANTI BABEL TOWER


What exactly is your question about the C programming language? I'd
suggest you try Google.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.l earn.c-c++
http://www.contrib.andrew.cmu.edu/~a...FAQ-acllc.html
Nov 14 '05 #2
"HALLES" <sl*********@ya hoo.fr> wrote:
# HI !
#
# Is there a way to write append rewrite a XML Multilingual file.

You can open a file for append with fopen(filename, "a"). However that is
strictly append, with no insertion before the end. Most operating system
don't offer record insertion I/O, and so most C libraries don't either.

You might be able to find a library that better supports XML than bare C
does. There are also other programming languages with DOM implementations
that more easily express string manipulation than C can.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
The whole world's against us.
Nov 14 '05 #3
SM Ryan wrote:
"HALLES" <sl*********@ya hoo.fr> wrote:
# HI !
#
# Is there a way to write append rewrite a XML Multilingual file.

You can open a file for append with fopen(filename, "a"). However that is
strictly append, with no insertion before the end. Most operating system
don't offer record insertion I/O, and so most C libraries don't either.

You might be able to find a library that better supports XML than bare C
does. There are also other programming languages with DOM implementations
that more easily express string manipulation than C can.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
The whole world's against us.


"What you mean us, white man?" Tonto to Lone Ranger. You had to be there.

--
Joe Wright mailto:jo****** **@comcast.net
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Nov 14 '05 #4
Joe Wright <jo********@com cast.net> wrote:
# SM Ryan wrote:
# > "HALLES" <sl*********@ya hoo.fr> wrote:
# > # HI !
# > #
# > # Is there a way to write append rewrite a XML Multilingual file.
# >
# > You can open a file for append with fopen(filename, "a"). However that is
# > strictly append, with no insertion before the end. Most operating system
# > don't offer record insertion I/O, and so most C libraries don't either.
# >
# > You might be able to find a library that better supports XML than bare C
# > does. There are also other programming languages with DOM implementations
# > that more easily express string manipulation than C can.
# >
# > --
# > SM Ryan http://www.rawbw.com/~wyrmwif/
# > The whole world's against us.
#
# "What you mean us, white man?" Tonto to Lone Ranger. You had to be there.

What would happen if View Askew met Firesign Theatre?

--
SM Ryan http://www.rawbw.com/~wyrmwif/
Wow. A sailboat.
Nov 14 '05 #5
I think i am going back to TP 7 !

to append write and rewrite.

I will buy an old comp 486 under 100MHz running TP7 to do what recent
compilers seem not to be able to do.

Lucky me i haven't thrown out my TP 7 compiler.

Regards

Hasta la vista, hombres !

Nov 14 '05 #6

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

Similar topics

1
7377
by: Ellixis | last post by:
Hello, How can I use fwrite() and fseek() in order to write data in the middle (or anywhere else) of a file without overwriting existing data ? People told me that I should load the file into memory (a variable) and use concatenation. But, according to me, It isn't clean to load an entire file into
4
15550
by: Option^Explicit | last post by:
What I'm trying to do: Open a text file and display the contents in a text box (I've done this) Need to be able to edit the file from within the textbox and have it save back to the source file.(can't figure how to do this) I was thinking on the Open for Output or Append, but I can't get it to accept a variable(TextBoxText) to open(since it's not a file) , what would be the simplest way to accomplish this task?
6
3280
by: Jon Slaughter | last post by:
I'm trying to replace some bytes in a file using fstream but all I seem to be able to do is append or 0 the file then write... Basicaly I just need to replace the first 512 bytes of the file with some buffer(but eventually I will need to replace random blocks in the file at different locations). Is there anyway to do this efficiently using fstream? (I know I can duplicate the file, but it seems a waste to rewrite the same data for no...
17
3365
by: HALLES | last post by:
HELLO ! I seek to use a form too fill a file without putting a server on my computer. I am no C# programmer, i can do some things in Javascript but IT CAN T WRITE REWRITE APPEND A FILE ON LOCAL DRIVES . ANY ASP PIECE OF SCRIPT TO HELP AUTOMAT MY INPUTS USIGA FORM LIKE PROCESS ? Regards.
9
6332
by: msuk | last post by:
All, I have a well form block of XML that is stored in a C# string type and I just simply want to display it in the browser using Response.Write but when I try this I get the following error: The XML page cannot be displayed Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
1
7544
by: D | last post by:
i have something where i am parsing information into a csv file with created headers. the script gets replayed as it tests several user profiles. how can i get it to continue writing on the last line (and not rewrite over info.) of the file where it left off? on another note, how to get rid of extra quotes in the csv file output? vb.net 2003 doesnt like when i take them off or add on more.
6
17118
by: wiso | last post by:
My problem is this (from: http://www.cplusplus.com/ref/iostream/fstream/open.html) #include <fstream> using namespace std; int main() { fstream f;
9
6926
by: andy.z | last post by:
If 2 people try to access the same text file at the same time to write to it - what happens in PHP ? What I mean is - presumably the first will be ok - But what will the second person actually see in his browser? And what will php do about it if not specifically programmed to deal with it ie whats the default behaviour?
6
18292
by: globalrev | last post by:
i ahve a program that takes certain textsnippets out of one file and inserts them into another. problem is it jsut overwrites the first riow every time. i want to insert every new piece of text into the next row. so: 1. how do i write to a new line every time i write to the file? 2. if i dont want to write to a new line but just want to insert it
0
7987
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...
1
8050
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8264
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...
0
6718
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5438
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
3897
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...
0
3939
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2412
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
0
1250
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.