使用黑莓上传图片

时间:2010-08-10 10:11:54

标签: image blackberry file-upload blackberry-simulator

我想使用MultipartPostData在黑莓模拟器中上传图像,以下是我的代码,但它似乎不起作用。我还签了我的.cod文件。有人可以帮帮我吗?

public void postData(String Url, bytes[] data)
{
 if (DeviceInfo.isSimulator()){
 Url=Url+";deviceSide=true";
}
HttpConnection httpConn=null;
OutputStream os=null;
InputStream is=null;
String url=Url;
try {
   PostData form = new MultipartPostData(MultipartPostData.DEFAULT_CHARSET, false) ;
   byte [] postData = data;
form.setData(postData);

      httpConn = (HttpConnection) Connector.open(url);
      httpConn.setRequestMethod(HttpConnection.POST);
   httpConn.setRequestProperty("User-Agent", "BlackBerry");
   httpConn.setRequestProperty("Content-Type", "multipart/form-data");
   httpConn.setRequestProperty("MIME-Type", "Image/Jpeg");
      httpConn.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(postData.length));
      httpConn.setRequestProperty("Content-Language", "en-US");

      os =httpConn.openOutputStream();
      os.write(form.getBytes());

    //read response
    StringBuffer sb = new StringBuffer();
    is = httpConn.openDataInputStream();
    int chr;
    while ((chr = is.read()) != -1)
      sb.append((char) chr);

    System.out.println("Result................................ " + sb.toString());
    String result=sb.toString();
}
catch(Exception e)
{
    System.out.println(e.toString());
}
finally {
    try{
        if(is!= null)
          is.close();
        if(os != null)
          os.close();
if(httpConn != null)
 httpConn.close();
 } catch(Exception e1){
        System.out.println(e1.toString());
    }
   }
 }

2 个答案:

答案 0 :(得分:2)

//你必须有一个发布数据的附加格式,.cod文件必须在模拟器上工作

httpConn = (HttpConnection)connDesc.getConnection();
                httpConn.setRequestMethod(HttpConnection.POST);          
    httpConn.setRequestProperty("user-agent", "BlackBerry");    
    httpConn.setRequestProperty("content-type", "multipart/form-data; boundary=----------V2ymHFg03ehbqgZCaKO6jy");

            os = httpConn.openOutputStream();
            //os.write(form.getBytes());

            byte[] fileBytes = {1,2,3,4}; //retrieve file bytes with your own code                

            ByteArrayOutputStream bos = new ByteArrayOutputStream();

            bos.write(("\r\n--" + "----------V2ymHFg03ehbqgZCaKO6jy" + "\r\n").getBytes());
       bos.write(("Content-Disposition: form-data; name=\"mifoto\"; filename=\"leo.gif\"\r\n").getBytes());
       bos.write(("Content-Type: image/gif\r\n\r\n").getBytes());
            bos.write(fileBytes);
       bos.write(("\r\n--" + "----------V2ymHFg03ehbqgZCaKO6jy" + "--\r\n").getBytes());

            os.write(bos.toByteArray());

答案 1 :(得分:1)

只要您拨打MultipartPostData.setData(),它就会覆盖您使用MultipartPostData.append()设置的所有内容处理数据。

leonel的回答有效,或者你可以使用Vlad Patryshev的ClientHttpRequest课程。