2013-04-25 75 views

回答

1

您可以創建NameValueCollection中(這是一個地圖狀類HTTPResponse的母公司)從類HTTPResponse:

HTTPResponse response; 
// ... 
NameValueCollection nvc(response); 
LRUPersistentCache<string, NameValueCollection> clientCache(100); 
clientCache.add("myresponse", nvc); 
// ...