목록parsing (2)
SPRING :: NOTE
CHtmlView를 이용한다. CHtmlView 프레임을 생성하는것은 본 포스팅에서 언급하지 않는다. AppNameView.cpp파일 BEGIN_DISPATCH_MAP(CGetWaypointView, CHtmlView) // 추가 Each methods need here to add mapping DISP_FUNCTION(CGetWaypointView, "getJSWaypoint", getJSWaypoint, VT_I4, VTS_VARIANT) END_DISPATCH_MAP() . . . CGetWaypointView::CGetWaypointView() { // TODO: 여기에 생성 코드를 추가합니다. EnableAutomation(); //
/* Description : The following class converts XML data into JSON format Author: Dnyanesh Pawar, Copyright: Dnyanesh Pawar (http://www.techrecite.com) Link: http://www.techrecite.com See the GNU General Public License for more details: http://www.creativecommons.org/ */ class XmlToJsonConverter { public function ParseXML ($url) { $fileContents= file_get_contents($url); // Remove tabs, newline, wh..