Tagged Questions

35
votes
27answers
20k views

Text editor to open big (giant, huge, large) text files

By big, I mean atleast a hundred megabytes big? While 100+ megabyte textfiles aren't common (atleast I hope so!), I have an app that's exporting data as XML and needs to be debugged. So, need to …
34
votes
8answers
2k views

Can you provide some examples of why it is hard to parse XML and HTML with a regex?

One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard: People want to treat a file as a sequence …
26
votes
40answers
2k views

Is XSLT worth it?

A while ago, I started on a project where I designed a html-esque XML schema so that authors could write their content (educational course material) in a simplified format which would then be …
25
votes
13answers
1k views

XML attribute vs XML element

At work we are being asked to create XML files to pass data to another offline application that will then create a second XML file to pass back in order to update some of our data. During the process …
23
votes
11answers
2k views

When to prefer JSON over XML?

My requirement is just to display a set of values retrieved from database on a spread. I am using jquery.
23
votes
8answers
4k views

How to deal with XML in C#

So what is the best way to deal with XML documents, XSD and all that stuff in C# 2.0? What classes to use etc. Like what are the best practices of parsing and making XML documents etc. EDIT: .Net …
19
votes
9answers
4k views

XML Serialization and Inherited Types

Hi Guys, following on from my previous question I have been working on getting my object model to serialize to XML. But I have now run into a problem (quelle surprise!). The problem I have is that I …
18
votes
12answers
1k views

What are the benefits of dependency injection containers?

I understand benefits of dependency injection itself. Let's take Spring for instance. I also understand benefits of other Spring featureslike AOP, helpers of different kinds, etc. I'm just wondering, …
17
votes
11answers
849 views

Why is JSON important?

I've only recently heard about JSON (Javascript Object Notation). Can anybody explain why it is considered (by some websites/blogs/etc) to be important? We already have XML, why is JSON better (apart …
17
votes
2answers
3k views

Proper way to implement IXmlSerializable?

Once a programmer decides to implement IXmlSerializable, what are the rules and best practices for implementing it? I've heard that GetSchema() should return null and ReadXml should move to the next …
16
votes
10answers
3k views

Best open XML parser for C++

Looking for a simple, clean, correct XML parser to use in my C++ project. Read and write my own..extension? You know what I mean. Thanks
15
votes
12answers
873 views

Simple way to do Xml in Java

Is there is Simple way to read and write Xml in Java? I've used a SAX parser before but I remember it being unintuitive, I've looked at a couple of tutorials for JAXB and it just looks complicated. …
15
votes
12answers
1k views

When would I use XML instead of SQL?

I've been working on database-driven web applications for a few years now and recently took on a project involving a CMS that is XML-capable. This has got me to thinking about the usage of XML/XSLT in …
15
votes
11answers
11k views

how to pretty print xml from Java

I have a Java String that contains XML, with no line feeds and indentations. I would like to turn in into a String with nicely formatted XML. How do I do this? String unformattedXml = …
14
votes
10answers
542 views

Best practices: When should I use elements and when should I use attributes?

Which would be the correct format for this XML data, are they equivalent or are there trade offs between the two? 1. <sitemap> <category name="Animals"> <section …

1 2 3 4 5 420 next
15 30 50 per page