Scala映射到Java映射转换

时间:2015-12-13 15:21:24

标签: java scala

我正在尝试将地图从scala转换为java:

var s = net.connect(port, function() {
  // Send our header
  s.write(JSON.stringify({
    id: '123',
    destId: '456'
  }) + '\n');

  s.end('Hello Dave!');
}).on('error', function(err) {
  // This should fire when the server rejects our request
  // due to one of the request checks failing
  console.log('Uh oh: ' + err);
});

但是,456未转换为Hello Dave!,而且我找不到实现目标的方法。

scala的做法是什么?

0 个答案:

没有答案