Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
135
rated 0 times [  138] [ 3]  / answers: 1 / hits: 28051  / 12 Years ago, fri, january 18, 2013, 12:00:00

I am attempting to write a node app that reads in a set of files, splits them into lines, and puts the lines into an array. Pretty simple. It works on quite a few files except some SQL files that I am working with. For some reason I seem to be getting some kind of unicode output when I split the lines up. The app looks something like this:



fs = require(fs);
var data = fs.readFileSync(test.sql, utf8);
console.log(data);
lines = data.split(n);
console.log(lines);


The input file looks something like this:



use whatever
go


The output looks like this:



��use whatever
go

[ '��uu0000su0000eu0000 u0000wu0000hu0000au0000tu0000eu0000vu0000eu0000ru0000',
'u0000gu0000ou0000',
'u0000' ]


As you can see there is some kind of unrecognized character at the beginning of the file. After reading the data in and directly outputting it, it looks okay except for this character. However, if I then attempt to split it up into lines, I get all these unicode-like characters. Basically it's all the actual characters with u0000 at the beginning of each one.



I have no idea what's going on here but it appears to have something to do with the characters in the file itself. If I copy and paste the text of the file into another new file and run the app on the new file, it works fine. I assume that whatever is causing this issue is being stripped out during the copy and paste process.


More From » node.js

 Answers
19

Your file is in UTF-16 Little Big Endian, not UTF-8.



var data = fs.readFileSync(test.sql, utf16le); //Not sure if this eats the BOM





Unfortunately node.js only supports UTF-16 Little Endian or UTF-16LE (Can't be sure from reading docs, there is a slight difference between them; namely that UTF-16LE does not use BOMs), so you have to use iconv or convert the file to UTF-8 some other way.



Example:



var Iconv  = require('iconv').Iconv,
fs = require(fs);

var buffer = fs.readFileSync(test.sql),
iconv = new Iconv( UTF-16, UTF-8);

var result = iconv.convert(buffer).toString(utf8);

[#80774] Thursday, January 17, 2013, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
kenandwightb

Total Points: 241
Total Questions: 95
Total Answers: 111

Location: Jersey
Member since Fri, Oct 1, 2021
3 Years ago
;