[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [xml] print a xmlHashTable
- From: "William M. Brack" <wbrack mmm com hk>
- To: "David" <lordkain tlen pl>
- Cc: "xml @ gnome. org" <xml gnome org>
- Subject: Re: [xml] print a xmlHashTable
- Date: Fri, 27 Apr 2007 07:01:20 -0700 (PDT)
Hi,
David wrote:
> Hello,
>
> I want to use the great xmlHashTable from the libxml2 library but i cant
> seem to print out its elements. Who knows how to deal with this problem?
>
> Code example
> ------------------
> xmlHashTablePtr hashtable;
> int i = 0;
> hashtable = xmlHashCreate(1);
> xmlHashAddEntry(hashtable, "keyno1", i++);
> xmlHashAddEntry(hashtable, "keyno2", i++);
> -------------------
>
> questions:
> - what does the the first parameter of xmlHashCreate do?
Enlightenment can often by achieved through the application of the
well-known expression RTFM :-) :
http://xmlsoft.org/html/libxml-hash.html#xmlHashCreate
Similar information can be gleaned from include/libxml/hash.h, not to
mention the comments in the source code (hash.c).
> - how do i print out all key/value pairs of the hashtable? (whitout
> knowlede of the key name in the hashtable)
Looking through the available hash functions, I'd say that
xmlHashScanFull may well fulfill your wishes, if you write a very simple
callback function to print the data presented to the callback.
>
> Cheerz, David
Bill
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]