码迷,mamicode.com
首页 > Web开发 > 详细

play freamwork 文件上传

时间:2014-12-31 18:17:21      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

/**
     * 上传
     *
     * @param name
     * @param file
     */
    public static void UploadFile(File file) {

        String fileName = file.getName();

        // 这里存放的是指定的目录data(一般是从配置文件中读取)
        File storeFile = new File("public/images/" + fileName);
        Files.copy(file, storeFile);
        
        String httpUrl=WXConst.FILE_URL;
        String fileType="image";
        String accessToken= Menu.getAccess_token();
        String contentType="JPG";
        String filePath="public/images/";
        
        
        JSON json = new JSONObject();
        json=WXHttpUtil.UploadMedia(httpUrl,fileType,accessToken, fileName, file,contentType, filePath);
        renderText(json.toString());
    }

play freamwork 文件上传

标签:

原文地址:http://www.cnblogs.com/xunfang123/p/4196118.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!