Nodejs到Android Rar(图像文件)发送

时间:2014-10-09 12:46:12

标签: javascript android node.js

我想将图像Node.js服务器发送到Android客户端 我在Node.js和Android设备之间使用REST服务。
我可以使用node.js模块发送图像' fs'并接收Android设备 没关系,但我有200多张图片,每张图片的大小在1KB到2KB之间。它'非常小的图像。所以我不想一个接一个地发送。它太慢了所以我很好奇我是不是#34; .rar"所有图像文件(约2MB),我可以发送一次并在Android设备中显示图像吗?
或者有没有办法发送一次没有" .rar" ?

1 个答案:

答案 0 :(得分:0)

当然,您可以在存档(任何类型)中压缩它们并在设备上解压缩它们。

使用nodejs-zip您可以生成zip存档。压缩的一个例子(取自here

var http = require('http'),
nodejszip = require('../lib/nodejs-zip');
http.createServer(function (req, res) {
    var file = 'compress-example.zip',
    arguments = ['-j'],
    fileList = [
        'assets/image_1.jpg',
        'assets/image_2.jpg',
        'assets/image_3.jpg',
        'assets/image_4.jpg',
        'assets/image_5.jpg',
        'assets/image_6.jpg',
        'assets/image_7.jpg',
        'assets/image_8.jpg',
        'assets/image_9.jpg',
        'assets/image_10.jpg',
        'assets/image_11.jpg',
        'assets/image_12.jpg',
        'assets/image_13.jpg',
        'assets/image_14.jpg'];
    var zip = new nodejszip();
    zip.compress(file, fileList, arguments, function(err) {
        if (err) {
            throw err;
        }
        res.writeHead(200, {'Content-Type': 'text/plain'});
        res.end('Complete.\n');
    });
}).listen(8000);

在设备上,您可以解压缩这样的zip存档。(取自here

public class Decompress {  
  private String _zipFile; 
  private String _location; 

  public Decompress(String zipFile, String location) { 
    _zipFile = zipFile; 
    _location = location; 
    _dirChecker("");  
  } 



  public void unzip() { 
    try  { 
      FileInputStream fin = new FileInputStream(_zipFile); 
      ZipInputStream zin = new ZipInputStream(fin); 
      ZipEntry ze = null; 
      while ((ze = zin.getNextEntry()) != null) { 
        Log.v("Decompress", "Unzipping " + ze.getName()); 

        if(ze.isDirectory()) { 
          _dirChecker(ze.getName());    
        } else { 
          FileOutputStream fout = new FileOutputStream(_location + ze.getName());    
          for (int c = zin.read(); c != -1; c = zin.read()) { 
            fout.write(c);     
          } 
          zin.closeEntry(); 
          fout.close(); 
        } 
      }  
      zin.close(); 
    } catch(Exception e) {     
      Log.e("Decompress", "unzip", e); 
    } 
  } 

  private void _dirChecker(String dir) {    
    File f = new File(_location + dir);  
    if(!f.isDirectory()) { 
      f.mkdirs(); 
    } 
  } 
}