Mac OS 上通过 Scala 的 Skype4Java
我正在运行 Mac OS 10.6、Java 1.6_17、Scala 2.8.1 Final。我正在尝试通过执行以下操作使用 Skype4Java 进行简单的 Skype 通话:
$>export JAVA_OPTS=-d32
$>scala -classpath .:./skype/release/skype.jar
scala> com.skype.Skype.makeCall("echotest")
我收到错误
"invalid attempt to access memory at location 0x0 ... bus error".
其他人也遇到此情况并找到解决方案吗?
注意:当我使用命令行 java 运行该 api 时,通过调用其中一个示例,我可以完美地使用该 api。尝试使用命令行 scala 执行相同的示例失败,并出现上述错误。
I'm running Mac OS 10.6, Java 1.6_17, Scala 2.8.1 final. I'm attempting to make a simple Skype call using Skype4Java by doing the following:
gt;export JAVA_OPTS=-d32
gt;scala -classpath .:./skype/release/skype.jar
scala> com.skype.Skype.makeCall("echotest")
I'm getting the error
"invalid attempt to access memory at location 0x0 ... bus error".
Anybody else experience this and find a solution?
Note: I'm able to use this api perfectly fine by invoking one of the samples when I run it using command line java. Attempting to execute the same sample using command line scala fails with the error above.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试对象测试 { def main(args:Array[String]) { ... } }
Try object Test { def main(args:Array[String]) { ... } }