Create file based on buffer data in nodejs

╄→гoц情女王★ 提交于 2020-06-15 04:03:58

问题


I am sending from front end client side a file, on the server side I have something like this:

{ name: 'CV-FILIPECOSTA.pdf',
  data: <Buffer 25 50 44 46 2d 31 2e 35 0d 25 e2 e3 cf d3 0d 0a 31 20 30 20 6f 62 6a 0d 3c 3c 2f 4d 65 74 61 64 61 74 61 20 32 20 30 20 52 2f 4f 43 50 72 6f 70 65 72 ... >,
  encoding: '7bit',
  mimetype: 'application/pdf',
  mv: [Function: mv] }

What I need is to create the file may be based on that buffer that is there, how can I do it?

I already searched a lot and didn't find any solution.

This is what I tried so far:

router.post('/upload', function(req, res, next) {
  if(!req.files) {
    return res.status(400).send("No Files were uploaded");
  }
  var curriculum = req.files.curriculum; 
  console.log(curriculum);
  curriculum.mv('../files/' + curriculum.name, function(err) {
    if (err){
      return res.status(500).send(err);      
    }
    res.send('File uploaded!');
  });
});

回答1:


You could use Buffer available with NodeJS:

let buf = Buffer.from('this is a test');
// buf equals <Buffer 74 68 69 73 20 69 73 20 61 20 74 65 73 74>

let str = Buffer.from(buf).toString();
// Gives back "this is a test"

Encoding could also be specified in the overloaded from method.

const buf2 = Buffer.from('7468697320697320612074c3a97374', 'hex');
// This tells that the first argument is encoded as a hexadecimal string

let str = buf2.toString();
// Gives back the readable english string
// which resolves to "this is a tést"

After you have data available in the readable format, you could store it using the fs module in NodeJS.

fs.writeFile('myFile.txt', "the contents of the file", (err) => {
  if(!err) console.log('Data written');
});

So, after converting the buffered input to string, you need to pass the string into the writeFile method. You could check the documentation of the fs module. It will help you better understand things.



来源:https://stackoverflow.com/questions/46236674/create-file-based-on-buffer-data-in-nodejs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!