Location:
Search - XML struct
Search list
Description: The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa.
For example,
>> project.name = MyProject
>> project.id = 1234
>> project.param.a = 3.1415
>> project.param.b = 42
becomes with str=xml_format(project, off )
\"<project>
<name>MyProject</name>
<id>1234</id>
<param>
<a>3.1415</a>
<b>42</b>
</param>
</project>\"
On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
Platform: |
Size: 214576 |
Author: leiming691128 |
Hits:
Description: With this tool you can convert strings and files containing XML data to MATLAB struct arrays. Either as one array of structs with all text and tags, or as sub- and subsub-levels of structs for each section enclosed between tags.
With xmldata(...) is a \"fast\" lowlevel interface to read single tags. Compiled mex-files for Linux & Windows. c-source included.
Copyright (C) Peter Rydesä ter 2002, Mitthö gskolan, SWEDEN
This program is free software you can redistribute it and/or modify it under the terms of the GNU General Public License.
Platform: |
Size: 28571 |
Author: aprist |
Hits:
Description: 基于struct结构的jsp-based on the structure of jsp
Platform: |
Size: 9837568 |
Author: 王兵 |
Hits:
Description: The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa.
For example,
>> project.name = MyProject
>> project.id = 1234
>> project.param.a = 3.1415
>> project.param.b = 42
becomes with str=xml_format(project, off )
"<project>
<name>MyProject</name>
<id>1234</id>
<param>
<a>3.1415</a>
<b>42</b>
</param>
</project>"
On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).
Platform: |
Size: 214016 |
Author: leiming691128 |
Hits:
Description: With this tool you can convert strings and files containing XML data to MATLAB struct arrays. Either as one array of structs with all text and tags, or as sub- and subsub-levels of structs for each section enclosed between tags.
With xmldata(...) is a "fast" lowlevel interface to read single tags. Compiled mex-files for Linux & Windows. c-source included.
Copyright (C) Peter Rydesä ter 2002, Mitthö gskolan, SWEDEN
This program is free software you can redistribute it and/or modify it under the terms of the GNU General Public License.
Platform: |
Size: 28672 |
Author: aprist |
Hits:
Description: spring struct2 hibernate 整合的一个例子,有完整jar包-spring struct2 hibernate demo
Platform: |
Size: 18991104 |
Author: prl |
Hits:
Description: XML tree displays the XML content in TreeView.
The function helps to extract each XML Tag from source and then put it in to TreeView, follow the XML struct. It also display the content inside each XML Tag.
Platform: |
Size: 3072 |
Author: fx130303 |
Hits:
Description: XML tree displays the XML content in TreeView.
The function helps to extract each XML Tag from source and then put it in to TreeView, follow the XML struct. It also display the content inside each XML Tag. The other advantage is display the attribute of each XML Tag.
Platform: |
Size: 12288 |
Author: fx130303 |
Hits:
Description: 解析XML文件的结点内容,并保存到结构体中。然后在主函数中打印结果(没有实现,望高手指点)。-parse content of XML doc,and save to struct,but i can t get the content from struct,may someone teach me,thanks a lot!
Platform: |
Size: 1024 |
Author: jonetsun |
Hits:
Description: this code parsing xml tree by reading it and convert it to the matlab format, so we can use a xml document in matlab like an array or struct.
Platform: |
Size: 1024 |
Author: Narges |
Hits:
Description: 一个Spring+struct+hibernate的整合xml,应该会有用-A xml which combin with Spring, struct2 and hibernate
Platform: |
Size: 2048 |
Author: 马健原 |
Hits:
Description: 1.一个跨平台的线程类
2.一个跨平台的Mutex
3.一组跨平台的容器(堆栈、单双链表、哈希表)
4.一个跨平台的socket 【OK】
5.一个简单高效的内存池
6.一个简单的XML解析器
7.一个安全高效的日志类
8.一个平台无关的File类和一个Dir类
9.一个时间日期类-(1) a cross-platform thread class. A cross-platform Mutex containers of a cross-platform (stack, single and double linked lists, hash tables). A cross-platform socket [OK] 5. A simple and efficient memory pool is a simple XML parser. a safe and efficient logging class. a platform independent of the File class and a Dir class. a time and date classes
Platform: |
Size: 2676736 |
Author: 温祖槐 |
Hits:
Description: 实现xml的遍历,并采用MFC的控制实现xml表内容的显示-show xml struct
Platform: |
Size: 59392 |
Author: 李秀才 |
Hits:
Description: Libxml 是一个实现读、创建及操纵XML数据功能的C语言库。这个指南提供例子代码并给出它基本功能的解释。在这个项目的主页上有Libxml及更多关于它可用的资料。包含有完整的API文档。这个指南并不能替代这些完整的文档,但是阐明功能需要使用库来完成基本操作。 -test xml file to struct
Platform: |
Size: 15360 |
Author: souhoo945 |
Hits:
Description: 通过gsoap实现高效MTOM协议的数据传输,适合linux操作系统(包括嵌入式linux)下通过MTOM协议实现XML数据包及二进制数据同时传输的应用场景,比普通soap+base64方式发送数据更加高效。
调试mtom经验:
这次调试的一点经验供参考:
1)可以根据附件的yoyo.h文件生成代码,参考以下命令:
soapcpp2 -L -C -I/home/dongruijie/workspace/gsoap-2.8/gsoap/import yoyo.h
2)最好显式设置一下命名空间,客户端代码:
struct soap *soap = soap_new1(SOAP_ENC_MTOM)
soap_set_namespaces(soap, namespaces) //namespaces定义在.nsmap中,直接调用即可
运行Demo例子时:
1)修改mtom_client.cpp中的服务端URL
2)编译
make cl
make
3)运行
./mtom_client-By gsoap MTOM efficient data transmission protocol for linux operating systems (including embedded linux) By implementing XML and binary data packets transmitted simultaneously through MTOM protocol scenarios than ordinary soap+ base64 way to send data more efficiently.
Commissioning mtom Experience:
The commissioning of a little experience for reference:
1) You can generate code based on attachment yoyo.h file, refer to the following command:
soapcpp2-L-C-I/home/dongruijie/workspace/gsoap-2.8/gsoap/import yoyo.h
2) The best look explicitly set the namespace, the client code:
struct soap* soap = soap_new1 (SOAP_ENC_MTOM)
soap_set_namespaces (soap, namespaces) // namespaces defined in .nsmap, a direct call to
When running Demo examples:
1) Modify the server URL mtom_client.cpp
2) compilation
make cl
make
3)
Platform: |
Size: 524288 |
Author: kevin |
Hits:
Description: WGOVCWC(SID)查询当前天气情况的XML提要
由美国国家海洋和大气管理局提供的国家气象局(http://www.weather.gov),和
返回一个结构体,其中包含当前天气状况
规定相应的四个字符SID(s)(站ID(s))。-WGOVCWC(SID) queries the XML Feeds of Current Weather Conditions as
provided by NOAA s National Weather Service (http://www.weather.gov), and
returns a struct containing current weather conditions for the area
specified by the corresponding four char SID(s) (Station ID(s)).
Platform: |
Size: 3072 |
Author: 陈建强 |
Hits:
Description: Extended XML Serializer for .NET 4 and .NET CORE. Deserialization XML standard XMLSerializer, erialization class, struct, generic class, primitive type, generic list and dictionary, array, enum,Serialization class with property interface, Deserialization of old version of XML.-Extended XML Serializer for .NET 4 and .NET CORE. Deserialization XML standard XMLSerializer, erialization class, struct, generic class, primitive type, generic list and dictionary, array, enum,Serialization class with property interface, Deserialization of old version of XML.
Platform: |
Size: 2684928 |
Author: Pudn Pop |
Hits:
Description: Read XML files into MATLAB struct and writes MATLAB data types to XML(Read XML files into MATLAB struct and writes MATLAB data types to XML.)
Platform: |
Size: 220160 |
Author: 我是小盲
|
Hits: