Httpconnection tarafından gönderme J2ME app 1kb fazla dosya

0 Cevap php

Ben boyutta bir dosya 624 B Aprox gönderdiğinizde. Bu httpconnection tarafından ok gönderdi. Ama çağrı hedef (PHP script) üzerinde> 624 B gibi büyük bir dosya göndermek zaman ben hiç bir POST parametreleri alamadım.

I use class HttpMultipartRequest: http://wiki.forum.nokia.com/index.php/HTTP_Post_multipart_file_upload_in_Java_ME

gibi bu:

Hashtable params = new Hashtable();
params.put("title", t.getString());

HttpMultipartRequest req = new HttpMultipartRequest(
"http://domain.com/api.php",
params,
"upload_field", "original_filename.png", "image/png", imageArray);

byte[] response = req.send();
String sss= new String(response);

Benim cep telefonu SE K770i.

Eğer nasıl J2ME uygulaması üzerinde 624 B daha büyük bir dosya göndermek yazabilir misiniz?

0 Cevap