我正在使用HttpURLConnection上传一个图像文件,对于包含所有标题的5MB文件大约需要3秒钟,但是当我用.getInputStream()打开一个InputStream时,该方法需要大约8秒以上才能返回流与。这是一个问题,因为如果我要上传多个图像,上传进度条似乎提供了一个糟糕的用户体验,它们在每次上传之间有相当大的暂停,因此进度条在上传之间停止几秒钟。我做了一些谷歌搜索,但似乎没有其他人有问题吗?
通常我认为服务器速度很慢,但看上传只需要几秒钟,下载“成功”或“失败”这个词应该不是真正的问题!
下载一些代码!我最初设置错误了吗? 注意:这也在AsyncTask
中 ByteArrayInputStream fileInputStream = null;
try {
fileInputStream = new ByteArrayInputStream(dObject.Data);
} catch (Exception e) {
e.printStackTrace();
}
String lineEnd = "\r\n";
String twoHyphens = "--";
String boundary = "*****";
String Tag="3rd";
try
{
//------------------ CLIENT RE QUEST
Log.e(Tag,"Inside second Method");
// Open a HTTP connection to the URL
URL url = new URL(_urlString);
//connectURL is a URL object
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
// Allow Inputs
conn.setDoInput(true);
// Allow Outputs
conn.setDoOutput(true);
// Don't use a cached copy.
conn.setUseCaches(false);
// Use a post method.
conn.setRequestMethod("POST");
conn.setRequestProperty("Connection", "Keep-Alive");
conn.setRequestProperty("Content-Type", "multipart/form-data;boundary="+boundary);
DataOutputStream dos = new DataOutputStream( conn.getOutputStream() );
dos.writeBytes(twoHyphens + boundary + lineEnd);
//dos.writeBytes("Content-Disposition: form-data; name=\"uploadedfile\";filename=\"" + _fileLocation +"\"" + lineEnd);
dos.writeBytes("Content-Disposition: form-data; name=\"file\";filename=\"" + _fileLocation +"\"" + lineEnd);
dos.writeBytes(lineEnd);
Log.e(Tag,"Headers are written");
// create a buffer of maximum size
int bytesAvailable = fileInputStream.available();
int maxBufferSize = 1024;
int bufferSize = Math.min(bytesAvailable, maxBufferSize);
byte[] buffer = new byte[bufferSize];
// read file and write it into form...
int bytesRead = fileInputStream.read(buffer, 0, bufferSize);
while (bytesRead > 0) {
dos.write(buffer, 0, bufferSize);
//int value = (int)(((float)((float)totalRead / (float) fileSize)) * 100);
totalRead += bytesRead;
//Publish the progress out to be displayed
publishProgress(totalRead);
bytesAvailable = fileInputStream.available();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
}
// send multipart form data necesssary after file data...
dos.writeBytes(lineEnd);
dos.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
// close streams
Log.e(Tag,"File is written");
fileInputStream.close();
dos.flush();
Log.e("TIME", "PRE GETINPUTSTREAM");
InputStream is = conn.getInputStream();
Log.e("TIME", "POST GETINPUTSTREAM");
// retrieve the response from server
int ch;
//Build the respose and log
StringBuilder b =new StringBuilder();
while( ( ch = is.read() ) != -1 ){
b.append( (char)ch );
}
String s=b.toString();
Log.i("Response",s);
dos.close();
return;
}
catch (MalformedURLException ex)
{
ErrorHandler.get().e("3");
}
catch (IOException ioe)
{
ErrorHandler.get().e("2");
}
答案 0 :(得分:4)
通常我认为服务器速度很慢,但看上传只需要几秒钟,下载“成功”或“失败”这个词应该不是真正的问题!
我怀疑服务器很慢或过载。
服务器可能正在排队HTTP请求,并且只能并行处理少量数据。
或者在将包含该文件的响应写入响应之前执行的某些数据库活动可能存在瓶颈。
或者它可以将文件动态生成到内存缓冲区(慢),然后从缓冲区流式传输(快速)到HTTP响应。
或其他类似的解释......
(理论上也可能有一些有趣的事情会减慢向服务器发送请求的速度。但我认为这不太可能。)
您是否尝试使用网络浏览器下载相同的文件?你在那里有同样的行为吗?
答案 1 :(得分:0)
在我的情况下,我发现getInputStream看起来很慢,因为这个方法初始化ssl握手(在https URL调用上)。第一次通话后,其他通话都可以