Upload Image using blackberry

≯℡__Kan透↙ 提交于 2019-12-11 13:54:23

问题


I want to upload an image in blackberry simulator using MultipartPostData, the following is my code but it does not seem to work. I have also signed my .cod file. Can anyone help me please?

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());
    }
   }
 }

回答1:


//you must have a bundary format post data, the .cod file must be work on the simulator

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());



回答2:


As soon as you call MultipartPostData.setData(), it overwrites any Content-Disposition data you have set with MultipartPostData.append().

leonel's answer works or you can use Vlad Patryshev's ClientHttpRequest class.



来源:https://stackoverflow.com/questions/3447872/upload-image-using-blackberry

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!