Blackberry jde : how to upload an image in server using MultipartPostData
问题 Here is the problem I am trying to send an image to a remote server using the class MultipartPostData. I build my PostData with the following code : PostData body = new MultipartPostData(MultipartPostData.DEFAULT_CHARSET, false); body.append("deviceID", ""+DeviceInfo.getDeviceId()); body.append("synchro", "true"); body.append("shoot_lat", ""+latitude); body.append("shoot_long", ""+longitude); body.append("shoot_place", ""+city); body.append("shoot_time", String.valueOf(time)); body.append(