以下是我在c++里面利用http协议发送的http数据包POST /HttpFrontServlet HTTP/1.1
Accept: */*
Accept-Language: zh-cn
Content-Type: multipart/form-data
User Agent: ZTE/A206
TermType: ZTE_XXX
Content-Length: 52
[13800130888,201101010011500000,T01,12,4@1@1@1@1@20]
那我现在在android里面想通过 HttpPost来发送以上的数据,我不清楚
TermType:ZTE_XXX这个数据怎么传入
[13800130888,201101010011500000,T01,12,4@1@1@1@1@20]  这个数据怎么传入?         String url = "http://211.140.2.123:8080/terminal/gprs";
         HttpPost httpRequest = new HttpPost(url);
         List<NameValuePair> params = new ArrayList<NameValuePair>();
         params.add();?????这里怎么写?        
         try
         {
         httpRequest.setEntity(new UrlEncodedFormEntity(params,HTTP.UTF_8));
         HttpResponse httpResponse = new DefaultHttpClient().execute(httpRequest);
        
         if( httpResponse.getStatusLine().getStatusCode() == 200 )
         {
         String strResult = EntityUtils.toString(httpResponse.getEntity());
         textView.setText(strResult);
         }
         else
         {
         textView.setText(""+httpResponse.getStatusLine().getStatusCode());
         }
         }
         catch(Exception e )
         {
        
        
         }