/*******************************************************************
系统名称 : SysTools
创建时间 : 2013/11/25 10:55:02
文 件 名 : HttpJsonUtil
功 能 : 定义字符串操作
作 者 : gxh
All Rights Reserved.
*****************************************************************************
*****************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.IO;
using com.jack.bean;
namespace com.jack.util
{
/// <summary>
/// FileName: HttpJsonUtil.cs
/// CLRVersion: 2.0.50727.5472
/// Author: gxh
/// Corporation:
/// Description:
/// DateTime: 2013/11/25 10:55:02
/// </summary>
public class HttpJsonUtil
{
public static JSONObject getHttpJsonReturn(String url, String param)
{
//url += "?parameter=" + jsonstr;
JSONO
|