朋友的Mac上有一个文本文件,其中包含以下行
Akamai's profits
当我在Windows上打开相同的文件时,它会显示
AkamaiÕs profits
有没有人猜测这里使用的是哪种编码,或者这种差异可能来自何处呢?
答案 0 :(得分:1)
可能是Mac OS Roman。
Mac OS Roman在字符位置0xD5处有Õ
,而ISO 8859-1(和Windows CP1252)在该位置有server.on('request', function(req, res){
if(req.method == 'POST')
{
var jsonString;
req.on('data', function (data) {
jsonString = JSON.parse(data);
});
req.on('end', function () {
serverNext(req, res, jsonString);
});
}
else
{
res.writeHead(405, {'Content-type':'application/json'});
res.write(JSON.stringify({error: "Method not allowed"}, 0, 4));
}
res.end();
});
。