我正在尝试使用HttpUrlConnection将图像发送到服务器,因为它是Google推荐的。我决定将图像转换为Base64字符串,然后将其发送到服务器,然后将其解码为.jpg文件。但是这种方法仅适用于小尺寸缩略图,而我无法发送全尺寸图像。
这是android客户端代码:
public static void postData(Bitmap imageToSend) {
try
{
URL url = new URL("http://");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("Cache-Control", "no-cache");
conn.setReadTimeout(35000);
conn.setConnectTimeout(35000);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
// writes a compress version of Bitmap to a specified outputstream
imageToSend.compress(Bitmap.CompressFormat.JPEG, 100, bos);
byte[] byteArray = bos.toByteArray();
String imageEncoded = Base64.encodeToString(byteArray, Base64.DEFAULT);
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("image", imageEncoded));
OutputStream os = conn.getOutputStream();
BufferedWriter writer = new BufferedWriter(
new OutputStreamWriter(os, "UTF-8"));
// getQuery is function for creating a URL encoded string
writer.write(getQuery(params));
System.out.println("Response Code: " + conn.getResponseCode());
InputStream in = new BufferedInputStream(conn.getInputStream());
Log.d("sdfs", "sfsd");
BufferedReader responseStreamReader = new BufferedReader(new InputStreamReader(in));
String line = "";
StringBuilder stringBuilder = new StringBuilder();
while ((line = responseStreamReader.readLine()) != null)
stringBuilder.append(line).append("\n");
responseStreamReader.close();
String response = stringBuilder.toString();
System.out.println(response);
bos.flush();
bos.close();
in.close();
conn.disconnect();
}
catch(MalformedURLException e) {
e.printStackTrace();
}
catch(IOException e) {
e.printStackTrace();
}
}
Node.js服务器代码:
function base64_decode(base64str,file) {
var bitmap = new Buffer(base64str,'base64');
//writing into an image file
fs.writeFile(file, bitmap);
//write a text file
console.log('File created from base64 encoded string');
}
app.post("/", function (req,res,next) {
//requesting the value of the image key which is urlencoded base 64 string
var image = req.body.image;
console.log(req.body.image);
base64_decode(image,'newImage.jpg');
res.writeHead(200, {'Content-Type':'text/plain'});
res.write('the image is saved');
res.end();
if (req.url != "/")
next();
由于BufferedWriter的大小限制,我无法对完整尺寸的图像使用相同的方法-base64编码的字符串太长了。
另一种方法是使用HttpPost和MultipartEntity,但是API22中已弃用了这两种方法,而且我不知道如何在服务器端处理请求。在其他示例中,使用了一些包装,例如两个连字符,border,crlf,但我找不到原因。
我需要一个带有HttpUrlConnection的示例
感谢您的帮助,因为我是Android和node.js的新手
我建议上传二进制数据。您可以将图像元数据(例如名称,类型,用户ID等)放置为url参数或自定义HTTP标头(X -…)。
Android客户端代码(未经测试!):
public static void postData(Bitmap imageToSend) {
try
{
URL url = new URL("http://myserver/myapp/upload-image");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("Cache-Control", "no-cache");
conn.setReadTimeout(35000);
conn.setConnectTimeout(35000);
// directly let .compress write binary image data
// to the output-stream
OutputStream os = conn.getOutputStream();
imageToSend.compress(Bitmap.CompressFormat.JPEG, 100, os);
os.flush();
os.close();
System.out.println("Response Code: " + conn.getResponseCode());
InputStream in = new BufferedInputStream(conn.getInputStream());
Log.d("sdfs", "sfsd");
BufferedReader responseStreamReader = new BufferedReader(new InputStreamReader(in));
String line = "";
StringBuilder stringBuilder = new StringBuilder();
while ((line = responseStreamReader.readLine()) != null)
stringBuilder.append(line).append("\n");
responseStreamReader.close();
String response = stringBuilder.toString();
System.out.println(response);
conn.disconnect();
}
catch(MalformedURLException e) {
e.printStackTrace();
}
catch(IOException e) {
e.printStackTrace();
}
}
Node.js,快速代码:
function rawBody(req, res, next) {
var chunks = [];
req.on('data', function(chunk) {
chunks.push(chunk);
});
req.on('end', function() {
var buffer = Buffer.concat(chunks);
req.bodyLength = buffer.length;
req.rawBody = buffer;
next();
});
req.on('error', function (err) {
console.log(err);
res.status(500);
});
}
app.post('/upload-image', rawBody, function (req, res) {
if (req.rawBody && req.bodyLength > 0) {
// TODO save image (req.rawBody) somewhere
// send some content as JSON
res.send(200, {status: 'OK'});
} else {
res.send(500);
}
});
我将尝试解释node.js部分:该函数rawBody
充当Express中间件。发出POST
请求时,该函数将与请求对象一起调用。它注册了听众data
,end
和error
事件。这些data
事件将所有传入的数据块追加到缓冲区。当end
火灾,该属性rawBody
在请求对象被创建并包含二进制数据(图像斑点)。rawBody()
然后将控制权转移到下一个处理程序,该处理程序现在可以将blob保存到您的数据库或文件系统中。
当处理真正的大数据斑点时,这种处理方法不是最佳方法。最好将数据流传输到文件或数据库以节省内存。
问题内容: 由于我是Web服务的新手,请您告诉我问题的答案。我的问题是 我想实现一个Web服务,当客户端调用此Web服务时,该服务会向客户端发送pdf文件。 请有人帮我提供一段不错的代码或解释。 现在可以请一个人解决我的错误。 12-23 09:42:48.429:调试/安装(32):DexInv:-开始’/data/app/vmdl33143.tmp’— 12-23 09:42:51.708:调
我正在创建我的产品,并与这个问题。有一天,我设置了Socket.io,一切都很好。第二天,我将服务器和客户端从http迁移到HTTPS。迁移后客户端和服务器端仍然连接,但不能从客户端发射到服务器,从服务器发射到客户端。 我的ssl证书位于和中,它们加载正确。运行在上的服务器 我的示例react组件。我的react应用程序运行在上。HTTPS连接良好,工作良好。 我该怎么办?也许我在中错误地使用了s
我正试图用Qt5.7用c编写一个应用程序,基本上它应该是一个websocket服务器,使用qwebsocket,能够将opencv制作的图像发送到HTML客户端。我要做的是在base64中对图像进行编码,然后在客户端将编码后的字符串放入图像标记的src中。只是为了测试,我可以正确地发送/接收文本消息,因此websocket架构可以正常工作,但是我在图像方面遇到了一些问题。这是我的代码片段: 服务器
我必须向服务器发送一个映像(我认为最好的选择是使用HttpURLConnection)并从它接收一个字符串答案。在我读过的不同的文档和web站点中,我研究了这样做的最佳方法是使用多伙伴关系。 1_做它是最好的解决方案吗? 2_我有一个错误,说Android Studio无法解析符号'multipartentity'。我读到,要解决它,我必须下载外部库。哪些是它们,我如何下载它们? 3_为此,我想在
问题内容: 我正在尝试通过一个请求将数据从一个node.js服务器发送到另一个node.js服务器。我在“客户端” node.js中执行的操作如下: 该块或多或少是从node.js网站获取的,因此应该正确。我唯一看不到的是如何在变量中包括用户名和密码以进行实际登录。这是我处理服务器node.js中的数据的方式(我使用express): 如何将这些和字段添加到变量中以使其登录? 谢谢 问题答案: 发
问题内容: 我正在制作一个应用程序,用于将图像从Android设备发送到在PC上运行的Java应用程序。客户端(android)上的图片是,我将其转换为,以便通过蓝牙发送到服务器。 请注意,位图来自已压缩的文件,因此我不需要再次对其进行压缩。 我在服务器(Java)上使用以下代码: 客户端没有错误。但是我在服务器端(Java应用程序)遇到此异常: java.lang.IllegalArgument