复制代码代码如下:
private static String url = PropertiesLoader.getProperty("ALLYES_SERVER", false);
private static String nome de usuário = PropertiesLoader.getProperty("ALLYES_USERNAME", false);
private static String password = PropertiesLoader.getProperty("ALLYES_PASSWORD", false);
/**
* 添加创意
*
* @param auditoria criativa
* @retornar
*/
public static Map<String, Object> addCreative(CreativeAudit creativeAudit) {
//nome,largura,altura,tipo,creativeTagId, código,bindId
Tipo de string = "9";
if (creativeAudit.getRelative_path().toLowerCase().endsWith("gif"))
tipo = "10";
if (creativeAudit.getRelative_path().toLowerCase().endsWith("swf"))
tipo = "11";
Map<String, Object> resultado = new HashMap<String, Object>();
String addUrl = url + "/criativos/adicionar";
DefaultHttpClient httpClient = new DefaultHttpClient();
httpClient.getCredentialsProvider().setCredentials(AuthScope.ANY, new UsernamePasswordCredentials(nome de usuário, senha));
tentar {
List<NameValuePair> postparams = new ArrayList<NameValuePair>();
postparams.add(new BasicNameValuePair("nome", creativeAudit.getName()));
postparams.add(new BasicNameValuePair("largura", Integer.toString(creativeAudit.getWidth())));
postparams.add(new BasicNameValuePair("altura", Integer.toString(creativeAudit.getHeight())));
postparams.add(new BasicNameValuePair("tipo", tipo));
postparams.add(new BasicNameValuePair("creativeTagId", creativeAudit.getAdCategory().getAd_caterory().substring(2)));
postparams.add(new BasicNameValuePair("código", creativeAudit.getCode()));
postparams.add(new BasicNameValuePair("bindId", creativeAudit.getGeoid()));
Entidade UrlEncodedFormEntity = new UrlEncodedFormEntity(postparams, "UTF-8");
HttpPost httpPost = new HttpPost(addUrl);
httpPost.setEntity(entidade);
HttpResponse httpResponse = httpClient.execute(httpPost);
int statusCode = httpResponse.getStatusLine().getStatusCode();
if (statusCode == HttpStatus.SC_OK) {
HttpEntity httpEntity = httpResponse.getEntity();
String createResult = EntityUtils.toString(httpEntity, "UTF-8");
JSONObject jsonObject = JSONObject.fromObject(createResult);
String uuid = jsonObject.get("id").toString();
creativeAudit.setUuid(uuid);
result.put("sucesso", auditoriacriativa);
} outro {
HttpEntity httpEntity = httpResponse.getEntity();
String createResult = EntityUtils.toString(httpEntity, "UTF-8");
String errorMessage = "新增创意:" + creativeAudit.getGeoid() + "出错,状态码:" + statusCode + "; " + createResult;
resultado.put("falhou", mensagem de erro);
}
} catch (Exceção ue) {
ue.printStackTrace();
result.put("falhou", "添加创意时提交的数据有问题!");
}
/*
creativeAudit.setUuid("189-"+creativeAudit.getGeoid());
result.put("sucesso",auditoria criativa);
*/
resultado de retorno;
}