发布于 2016-07-20 06:06:53 | 109 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的Java函数式编程,程序狗速度看过来!

Java程序设计语言

java 是一种可以撰写跨平台应用软件的面向对象的程序设计语言,是由Sun Microsystems公司于1995年5月推出的Java程序设计语言和Java平台(即JavaEE(j2ee), JavaME(j2me), JavaSE(j2se))的总称。


这篇文章主要介绍了java实现新浪微博Oauth接口发送图片和文字的方法,涉及java调用新浪微博Oauth接口的使用技巧,具有一定参考接借鉴价值,需要的朋友可以参考下

本文实例讲述了java实现新浪微博Oauth接口发送图片和文字的方法。分享给大家供大家参考。具体如下:

基于网上很多人利用新浪api开发新浪微博客户端的时候遇到无法发图片的问题,很多人卡在了这一布。现将代码呈上,希望能帮到一些朋友。


/**
* 发表带图片的微博
* @param token
* @param tokenSecret
* @param aFile
* @param status
* @param urlPath
* @return
*/
public String uploadStatus(String token, String tokenSecret, File aFile, String status, String urlPath) {
  httpOAuthConsumer = new DefaultOAuthConsumer(consumerKey,consumerSecret);
  httpOAuthConsumer.setTokenWithSecret(token,tokenSecret);
  String result = null;
  try {
   URL url = new URL(urlPath);
   HttpURLConnection request = (HttpURLConnection) url.openConnection();
   request.setDoOutput(true);
   request.setRequestMethod("POST");
   HttpParameters para = new HttpParameters();
   para.put("status", URLEncoder.encode(status,"utf-8").replaceAll("\\+", "%20"));
   String boundary = "---------------------------37531613912423";
   String content = "--"+boundary+"\r\nContent-Disposition: form-data; name=\"status\"\r\n\r\n";
   String pic = "\r\n--"+boundary+"\r\nContent-Disposition: form-data; name=\"pic\"; filename=\"image.jpg\"\r\nContent-Type: image/jpeg\r\n\r\n";
   byte[] end_data = ("\r\n--" + boundary + "--\r\n").getBytes();
   FileInputStream stream = new FileInputStream(aFile);
   byte[] file = new byte[(int) aFile.length()];
   stream.read(file);
   request.setRequestProperty("Content-Type", "multipart/form-data; boundary="+boundary); //设置表单类型和分隔符
   request.setRequestProperty("Content-Length", String.valueOf(content.getBytes().length + status.getBytes().length + pic.getBytes().length + aFile.length() + end_data.length)); //设置内容长度
   httpOAuthConsumer.setAdditionalParameters(para);
   httpOAuthConsumer.sign(request);
   OutputStream ot = request.getOutputStream();
   ot.write(content.getBytes());
   ot.write(status.getBytes());
   ot.write(pic.getBytes());
   ot.write(file);
   ot.write(end_data);
   ot.flush();
   ot.close();
   request.connect();
   if (200 == request.getResponseCode()) {
    result = "SUCCESS";
   }
  } catch (FileNotFoundException e1) {
   e1.printStackTrace();
  } catch (IOException e) {
   e.printStackTrace();
  } catch (OAuthMessageSignerException e) {
   e.printStackTrace();
  } catch (OAuthExpectationFailedException e) {
   e.printStackTrace();
  } catch (OAuthCommunicationException e) {
   e.printStackTrace();
  }
  return result;
}

希望本文所述对大家的java程序设计有所帮助。



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务