Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のc++コードとsax解析にxercesを使用する場合、属性の値をその名前で指定したいと思います。どうやってやるの ?xercesドキュメントにはこのようなものがありますが、機能しません:
String identifier = atts.getValue("id");
前もって感謝します
私はこの問題を使用して解決しました
XMLCh* identity= XMLString::transcode("id"); char* identityVal = XMLString::transcode(attrs.getValue(identity));