win 32はCInternetSessionを使用してurlにアクセスしjasonを解析する


くだらないことを言わないで、直接コードをつけましょう.
#include "stdafx.h"
#include "string"
#include 
#include 
#include 
#include 
#include 

using namespace std;
using namespace boost::property_tree;

int _tmain(int argc, _TCHAR* argv[])
{
	CWinApp app((LPCTSTR)argv[0]);
	app.InitApplication();
	AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0);

	CInternetSession session;
	CHttpFile *file=NULL;
	CString strURL="********************";
	try
	{
		file=(CHttpFile*)session.OpenURL(strURL);
	}catch(CInternetException * m_pExection)
	{
		file=NULL;
		m_pExection->m_dwError;
		m_pExection->Delete();
		session.Close();
	}
	char urlData[1024];
	CString result="";
	if (file!=NULL)
	{
//  :file->ReadString((LPTSTR)urlData,1024) ,        。    file->ReadString(CString)    
		while (file->ReadString((LPTSTR)urlData,1024)!=NULL)
		{
			result+=urlData;
		}
	}   
	USES_CONVERSION;
	string sdata=W2A(result.GetBuffer());
	ptree pt;
	stringstream stream;
	stream<(stream,pt);	
	int userid=pt.get("userid");
	return 0;
}

注意事項:1 win 32アプリケーションはmfcのクラスを使用します.初期化が必要
CWinApp app((LPCTSTR)argv[0]);
app.InitApplication();
AfxWinInit(::GetModuleHandle(NULL), NULL,::GetCommandLine(), 0);
詳細:http://blog.csdn.net/dotneterbj/article/details/18778449
2は使用 file->ReadString url上のデータを取得すると、文字化けしてしまう場合があります.解決策はすでに与えられている.参照先:http://blog.sina.com.cn/s/blog_69ebf25c0100mbdx.html
3コンパイル時、Building MFCアプリケーションwith/MD[d](CRT dll version)requires MFC shared dll versionエラー解決
 参照先:http://blog.163.com/zhengjiu_520/blog/static/35598306201004104633952/
4 boostライブラリの偉大さに感謝し、他のlibやヘッダファイルをダウンロードする必要がなく、jason文字列を直接解析することができます.