我正在尝试将jpg图像发布到Web服务器。我在服务器上测试了我的PHP脚本,我可以使用表单上传图像。现在我正在尝试使用相同的脚本制作一个Blackberry应用程序将图像POST到服务器,但是当我测试Java代码时,PHP告诉我NOTHING被发布了,我不知道我做错了什么但是我做这样的事情:
String mBoundary = "SUPSUPSUPSUP";
/* Preparar objeto a enviar */
InputStream mImagen = this.getClass().getResourceAsStream("sample.jpg");
byte[] mBytesPostear = IOUtilities.streamToBytes(mImagen);
HttpConnection mConexion = (HttpConnection) Connector.open("http://www.raspberry.com/script.php");
/* Preparar headers del POST. Es multiformulario con POST de un archivo */
mConexion.setRequestMethod(HttpConnection.POST);
mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_TYPE, HttpProtocolConstants.CONTENT_TYPE_MULTIPART_FORM_DATA + ";boundary=" + mBoundary);
mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(mBytesPostear.length));
mConexion.setRequestProperty( "x-rim-transcode-content", "none" );
/* Preparar contenido de salida */
ByteArrayOutputStream mOutput = new ByteArrayOutputStream();
OutputStream mOS = mConexion.openOutputStream();
/* Escribir contenido */
String nuevaLinea = "\r\n";
String contDisp="Content-Disposition:form-data; name=\"foto\";filename=\"sample.jpg\"";
String contEnc = "Content-Transfer-Encoding: binary";
String type="Content-Type:image/jpeg";
mOutput.write(nuevaLinea.getBytes());
mOutput.write("--".getBytes());
mOutput.write(mBoundary.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(contDisp.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(type.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(contEnc.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(mBytesPostear);
mOutput.write(nuevaLinea.getBytes());
mOutput.write("--".getBytes());
mOutput.write(mBoundary.getBytes());
mOutput.write("--".getBytes());
mOutput.write(nuevaLinea.getBytes());
/**********************/
/* Escribir el contenido */
mOS.write(mOutput.toByteArray());
mOutput.flush();
mOutput.close();
mOS.flush();
mOS.close();
/* Recibir respuesta del servidor */
InputStream mIS = mConexion.openInputStream();
int mLongitud = (int) mConexion.getLength();
if (mLongitud > 0) {
int mActual = 0;
int mBytesLeidos = 0;
byte[] mBytes = new byte[mLongitud];
while ((mBytesLeidos != mLongitud) && (mActual != -1)){
mActual = mIS.read(mBytes, mBytesLeidos, mLongitud - mBytesLeidos);
mBytesLeidos += mActual;
}
String mRespuesta = new String(mBytes);
System.out.println("Respuesta: " + mRespuesta);
}
我刚刚尝试克隆Chrome使用表单时发送的标题,我认为它们具有相同的信息。
我的PHP脚本首先检查是否发布了某些内容,如果没有发布任何内容,则会返回一条消息,以便我能够“使用”Web服务器中的脚本,我可以看到Blackberry设备正在上传数据但答案是没有发布任何内容。
我想我正在以错误的格式向服务器发送信息。
非常感谢任何帮助。
谢谢!
答案 0 :(得分:1)
我不确定是否还有其他问题,但这看起来并不合适:
mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(mBytesPostear.length));
Content-Length
标头应该给出完整请求正文的长度,包括所有--boundary\r\nHeaders: stuff
,而不仅仅是一个上传的文件字段。
答案 1 :(得分:1)
我在代码中添加了完整的长度并检查了我的PHP脚本,它现在运行正常:这是完整的代码段,以防其他人需要它:
public class PostImagen {
private String mURL;
private byte[] mDatos;
public PostImagen(String URLServicio, byte[] Datos){
mDatos = Datos;
mURL = URLServicio;
}
public void getRespuesta() throws Exception {
try {
String mBoundary = "SUPSUP";
/* Strings a usar para el contenido */
String nuevaLinea = "\r\n";
String contDisp="Content-Disposition: multipart/form-data; name=\"foto\";filename=\"sample.jpg\"";
String contEnc = "Content-Transfer-Encoding: binary";
String type="Content-Type:image/jpeg";
/* Preparar objeto a enviar */
byte[] mBytesPostear;
if (mDatos == null){
InputStream mImagen = this.getClass().getResourceAsStream("sample.jpg");
mBytesPostear = IOUtilities.streamToBytes(mImagen);
} else {
mBytesPostear = mDatos;
}
System.err.println("Longitud de imagen: " + mBytesPostear.length);
/* Preparar contenido de salida */
ByteArrayOutputStream mOutput = new ByteArrayOutputStream();
mOutput.write(nuevaLinea.getBytes());
mOutput.write("--".getBytes());
mOutput.write(mBoundary.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(contDisp.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(type.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(contEnc.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(nuevaLinea.getBytes());
mOutput.write(mBytesPostear);
mOutput.write(nuevaLinea.getBytes());
mOutput.write("--".getBytes());
mOutput.write(mBoundary.getBytes());
mOutput.write("--".getBytes());
mOutput.write(nuevaLinea.getBytes());
/* Preparar conexión y headers */
HttpConnection mConexion = (HttpConnection) Connector.open(mURL);
mConexion.setRequestMethod(HttpConnection.POST);
mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_TYPE, HttpProtocolConstants.CONTENT_TYPE_MULTIPART_FORM_DATA + ";boundary=" + mBoundary);
mConexion.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(mOutput.size()));
mConexion.setRequestProperty( "x-rim-transcode-content", "none" );
/**********************/
System.err.println("Escribiendo stream");
OutputStream mOS = mConexion.openOutputStream();
/* Escribir el contenido */
mOS.write(mOutput.toByteArray());
mOutput.flush();
mOutput.close();
mOS.flush();
mOS.close();
System.err.println("Se terminó de escribir payload, recibiendo respuesta");
/* Recibir respuesta del servidor */
if (mConexion.getResponseCode() != HttpConnection.HTTP_OK){
throw new Exception("El servidor NO regresó OK (200) al leer la respuesta. Saliendo...");
}
InputStream mIS = mConexion.openInputStream();
int mLongitud = (int) mConexion.getLength();
if (mLongitud > 0) {
int mActual = 0;
int mBytesLeidos = 0;
byte[] mBytes = new byte[mLongitud];
while ((mBytesLeidos != mLongitud) && (mActual != -1)){
mActual = mIS.read(mBytes, mBytesLeidos, mLongitud - mBytesLeidos);
mBytesLeidos += mActual;
}
String mRespuesta = new String(mBytes);
System.out.println("Respuesta: " + mRespuesta);
} else {
throw new Exception("No se recibió respuesta del servidor");
}
} catch (IOException e) {
throw new Exception("Error de lectura o escritura: " + e.getMessage());
}
}
}